| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824 |
- <template>
- <view class="container" :style="'overflow:' + (showPage ? 'hidden' : 'visible')" v-if="info">
- <!-- 顶部分段器区域 -->
- <view class="control">
- <uni-segmented-control :current="activeIndex" :values="headerList" style-type="text" active-color="#096562" @clickItem="onClickItem" />
- </view>
- <!-- 顶部民宿图片区域 -->
- <view class="banner">
- <swiper autoplay circular class="swiper">
- <swiper-item class="swiper_item" v-for="(item, current) in info.hotelFileInfoList" :key="item.id" @click="handleClickSwiper(info.hotelFileInfoList, current)">
- <img mode="aspectFill" class="img" :src="item.url" />
- </swiper-item>
- </swiper>
- <view class="slogan">
- <img src="../../static/index/slogan.png" />
- </view>
- <!-- 720°全景链接区域 -->
- <view class="full" v-if="info.linkProUrl" @click="handleGoPull(info.linkProUrl)">
- <img src="../../static/index/full.png" />
- 720°全景
- </view>
- <!-- 收藏按钮区域 -->
- <view class="collect">
- <uni-fav circle bgColorChecked="#096562" :checked="info.is_collect_hotel" @click="changeCollect(info.is_collect_hotel)" />
- </view>
- </view>
- <!-- 民宿详细信息区域 -->
- <view class="detail">
- <view class="detail_name">{{ info.hotel_name }}</view>
- <view class="detail_info">
- <view class="info_left">{{ info.fitupTime }}装修 | {{ info.openTime }}开业</view>
- <view class="info_right" @click="goPageDetailInfo">
- 设施/详情
- <img src="../../static/index/right.png" />
- </view>
- </view>
- <view class="detail_group">
- <view class="group_item" v-for="item in info.hconfigList" :key="item.id">
- <img :src="item.fileUrl" />
- {{ item.name }}
- </view>
- </view>
- <view class="address">
- <view class="address_left">{{ info.hposition }}</view>
- <view class="address_right">
- <view class="right_box" @click="handleMap(info)">
- <img src="../../static/index/map.png" />
- </view>
- <view class="right_box" @click="handlePhone(info.managerPhone)">
- <img src="../../static/index/phone.png" />
- </view>
- </view>
- </view>
- <view class="distance" v-if="distance">距离我{{ distance }}km</view>
- </view>
- <!-- 房型信息区域 -->
- <view class="body">
- <!-- 选择日期区域 -->
- <view class="body_header" @click="handleOpen()">
- <view class="header_start">
- <view class="header_top">{{ getWeek(startTime) }}入住</view>
- <view class="header_bottom">{{ startTime.slice(5, 7) }}月{{ startTime.slice(8, 10) }}日</view>
- </view>
- <view class="header_night">
- <view class="night_line"></view>
- <view class="night_box">{{ nightNum }}晚</view>
- <view class="night_line"></view>
- </view>
- <view class="header_end">
- <view class="header_top">{{ getWeek(endTime) }}离店</view>
- <view class="header_bottom">{{ endTime.slice(5, 7) }}月{{ endTime.slice(8, 10) }}日</view>
- </view>
- </view>
- <!-- 日历组件 -->
- <uv-calendars
- ref="calendar"
- range
- title="选择日期"
- start-text="住店"
- end-text="离店"
- color="#096562"
- confirmColor="#096562"
- :selected="selected"
- :startDate="earlyTime"
- :endDate="lateTime"
- @monthSwitch="monthSwitch"
- @confirm="handleConfirm"
- />
- <!-- 房型列表区域 -->
- <view class="body_content" v-if="list.length">
- <!-- 每一个房型盒子区域 -->
- <view class="body_box" v-for="item in list" :key="item.id" @click="handleLookDetail(item)">
- <view class="box_left">
- <img mode="aspectFill" :src="item.fileInfoList[0].url" />
- </view>
- <view class="box_center">
- <view class="center_top">{{ item.hName }}</view>
- <view class="center_center">
- <view class="center_item" v-if="item.hAreas">{{ item.hAreas }}㎡ 剩余{{ item.remainRooms }}间</view>
- </view>
- <view class="center_bottom">
- <img v-for="item2 in item.hConfigList" :key="item2.id" class="img" :src="item2.fileUrl" />
- </view>
- </view>
- <view class="box_right">
- <view class="right_price">
- <text>¥</text>
- {{ item.price }}
- </view>
- <view class="right_btn" :class="{ inactive: item.remainRooms * 1 <= 0 }" @click.stop="goPageAffOrder(item)">订</view>
- </view>
- </view>
- <!-- 点击房型弹窗区域 -->
- <uv-popup ref="popup" bgColor="none" :safeAreaInsetBottom="false">
- <view class="body_pop">
- <!-- 轮播图区域 -->
- <swiper indicator-dots circular indicator-color="#FFFFFF" indicator-active-color="#096562" class="pop_swiper">
- <swiper-item class="pop_swiper_item" v-for="item in roomInfo.fileInfoList" :key="item.id">
- <img class="img" :src="item.url" />
- </swiper-item>
- </swiper>
- <!-- 轮播图关闭图标区域 -->
- <img class="pop_icon" src="../../static/index/close.png" @click="handleClosePop" />
- <view class="pop_body">
- <view class="body_title">{{ roomInfo.hName }}</view>
- <view class="body_tags">
- <view class="tags_item">
- <img class="img" src="../../static/index/place.png" />
- {{ roomInfo.hAreas }}㎡
- </view>
- <view class="tags_item" v-for="item2 in roomInfo.hConfigList" :key="item2.id">
- <img class="img" :src="item2.fileUrl" />
- {{ item2.name }}
- </view>
- </view>
- <view class="body_title2">费用明细</view>
- <view class="body_detail">
- <!-- <view class="detail_old">¥{{ roomInfo.price }}</view> -->
- <!-- <view class="detail_box">
- 黄金会员9折
- <text>-¥25</text>
- </view>
- <view class="detail_box">
- 活动
- <text>-¥2.5</text>
- </view> -->
- <view class="detail_new">
- 每间每晚
- <view class="ml_10 color">¥</view>
- <view class="price color">{{ roomInfo.price }}</view>
- </view>
- </view>
- <view class="body_bottom">
- <view class="bottom_left" @click="handlePhone(info.managerPhone)">
- <img class="img" src="../../static/index/phone2.png" />
- 联系商家
- </view>
- <view class="bottom_right">
- <text>¥</text>
- {{ roomInfo.price }}
- <view class="btn" :class="{ inactive: roomInfo.remainRooms * 1 <= 0 }" @click="goPageAffOrder(roomInfo)">预定</view>
- </view>
- </view>
- </view>
- </view>
- </uv-popup>
- </view>
- <view class="noData" v-else>
- <img src="../../static/images/noData.png" />
- 暂无数据
- </view>
- </view>
- <!-- 评价区域 -->
- <view class="evaluate">
- <view class="evaluate_title">评价</view>
- <view class="evaluate_body">
- <!-- 评分区域 -->
- <view class="header" v-if="score">
- <view class="header_box">
- <!-- 总评分区域 -->
- <view class="box_left">{{ score }}</view>
- <view class="box_right">
- <!-- 位置评分区域 -->
- <view class="right_item">
- <view class="item_info">位置 {{ scoreWz }}</view>
- <view class="item_progress">
- <progress activeColor="#0BAD8B" backgroundColor="#CCCCCC" stroke-width="10" border-radius="92" :percent="((scoreWz * 1) / 5) * 100" />
- </view>
- </view>
- <!-- 设施评分区域 -->
- <view class="right_item">
- <view class="item_info">设施 {{ scoreSs }}</view>
- <view class="item_progress">
- <progress activeColor="#0BAD8B" backgroundColor="#CCCCCC" stroke-width="10" border-radius="92" :percent="((scoreSs * 1) / 5) * 100" />
- </view>
- </view>
- <!-- 服务评分区域 -->
- <view class="right_item">
- <view class="item_info">服务 {{ scoreFw }}</view>
- <view class="item_progress">
- <progress activeColor="#0BAD8B" backgroundColor="#CCCCCC" stroke-width="10" border-radius="92" :percent="((scoreFw * 1) / 5) * 100" />
- </view>
- </view>
- <!-- 卫生评分区域 -->
- <view class="right_item">
- <view class="item_info">卫生 {{ scoreWs }}</view>
- <view class="item_progress">
- <progress activeColor="#0BAD8B" backgroundColor="#CCCCCC" stroke-width="10" border-radius="92" :percent="((scoreWs * 1) / 5) * 100" />
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 每一个评价区域 -->
- <view class="evaluate_box" v-for="item in commentList" :key="item.id" @click="handleGoDetail(item)">
- <!-- 用户信息区域 -->
- <view class="box_userInfo">
- <img mode="aspectFill" :src="item.headPhoto" />
- <view class="userInfo_msg">
- <view class="msg_name">{{ item.userName }}</view>
- <view class="msg_star">
- <uni-rate readonly activeColor="#FFC300" :size="16" :value="item.score" />
- </view>
- </view>
- </view>
- <!-- 入住时间区域 -->
- <view class="box_time" v-if="item.liveTime && item.commentTime">
- {{ item.liveTime.slice(0, 10) }}入住,{{ item.commentTime.slice(0, 10) }}发表 | {{ item.houseName }}
- </view>
- <!-- 评价内容区域 -->
- <uv-read-more show-height="85rpx" closeText="全文" color="#096663" fontSize="24rpx" textIndent="0" :toggle="true" :shadowStyle="shadowStyle">
- <view class="box_content">
- {{ item.content }}
- </view>
- </uv-read-more>
- <!-- 图片区域 -->
- <view class="box_img">
- <img
- v-for="(ele, index) in item.url"
- :key="index"
- mode="aspectFill"
- v-if="ele.indexOf('jpg') !== -1 || ele.indexOf('png') !== -1"
- :src="ele"
- @click.stop="handleClickImg(ele, index)"
- />
- <video
- :id="item.id + index2"
- class="video"
- :show-fullscreen-btn="false"
- :show-play-btn="false"
- v-for="(video, index2) in item.url"
- :key="index2"
- v-if="video.indexOf('mp4') !== -1"
- :src="video"
- @fullscreenchange="fullscreenchange"
- @click.stop="handleClickVideo(item.id + index2)"
- ></video>
- </view>
- </view>
- <view class="foot" @click="handleGoPage" v-if="commentList.length">
- 查看全部{{ total }}条评价
- <img src="../../static/index/right.png" />
- </view>
- <view class="noData" v-if="commentList.length === 0">
- <img src="../../static/images/noData.png" />
- 暂无评论
- </view>
- </view>
- </view>
- <!-- 周边区域 -->
- <view class="rim">
- <!-- 标题区域 -->
- <view class="rim_title">周边</view>
- <!-- 周边分段器区域 -->
- <view class="rim_control">
- <span class="control_box" v-for="(item, index) in rimHeaderList" :key="index" @click="onClickItemRim(index)">
- <text class="text" :class="{ active: rimActiveIndex === index }">{{ item }}</text>
- </span>
- </view>
- <!-- 周边列表区域 -->
- <view class="rim_body" v-if="rimList.length">
- <!-- 每一个盒子区域 -->
- <view class="rim_box" v-for="item in rimList" :key="item.id" @click="GoRimDetail(item)">
- <img mode="aspectFill" :src="item.first_img || item.coverImg" />
- <view class="box_info">
- <view class="info_top">{{ item.rname || item.hname }}</view>
- <view class="info_center" v-if="item.distance">距您{{ item.distance }}km</view>
- <!-- <view class="info_bottom">
- <view class="bottom_rate">4.8分</view>
- <view class="bottom_num">{{ item.num }}条评论</view>
- <view class="bottom_price">
- ¥220
- <text>起</text>
- </view>
- </view> -->
- </view>
- </view>
- </view>
- <view class="noData" v-else>
- <img src="../../static/images/noData.png" />
- 暂无数据
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 滚动穿透控制
- showPage: false,
- // 房型数据数组
- list: [],
- // 住几晚
- nightNum: 1,
- // 选择日期数组
- dayList: [],
- // 酒店信息
- info: null,
- // 房间信息
- roomInfo: {},
- // 民宿Id
- hotelId: '',
- // 是否有定位权限
- showLocation: false,
- // 是否展示距离
- distance: '',
- // 入住时间 YYYY-MM-DD
- startTime: '',
- // 离店时间 YYYY-MM-DD
- endTime: '',
- // 日历可以选择的最早日期
- earlyTime: '',
- // 日历可以选择的最晚日期
- lateTime: '',
- // 管理端设置的可以提前多少天预定
- setTime: '',
- activeIndex: 0,
- headerList: ['预定', '评价', '周边'],
- // 评价列表数据
- commentList: [],
- queryDom: null,
- // 评价Dom距离页面顶部的距离
- domTop: null,
- // 周边Dom距离页面顶部的距离
- domTopRim: null,
- selected: [],
- // 总评分
- score: '',
- // 服务评分
- scoreFw: '',
- // 设施评分
- scoreSs: '',
- // 卫生评分
- scoreWs: '',
- // 位置评分
- scoreWz: '',
- // 评论总条数
- total: null,
- // 是否收藏
- ischecked: false,
- // video 上下文 videoContext 对象
- videoContext: null,
- // 是否是全屏状态
- isFullScreen: false,
- // 周边列表数组
- rimList: [],
- // 周边分段器当前索引
- rimActiveIndex: 0,
- // 周边分段器数组
- rimHeaderList: ['民宿', '美食', '景点', '加油站'],
- // 周边列表当前页
- page: 1,
- // 周边列表每页多少条
- rows: 10,
- // 周边列表总条数
- rimTotal: null,
- // 用户定位经度
- myLng: 0,
- // 用户定位纬度
- myLat: 0,
- // 所属乡镇
- town: ''
- }
- },
- mounted() {
- // 开启转发功能
- uni.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- })
- },
- onLoad(options) {
- this.getTimes()
- this.hotelId = options.id
- this.distance = options.distance === 'undefined' ? false : options.distance
- this.town = options.town
- uni.getSetting({
- success: (res) => {
- this.showLocation = res.authSetting['scope.userLocation']
- this.getHotelInfo()
- this.getEvaData()
- this.getLateTime()
- }
- })
- uni.getLocation({
- type: 'gcj02',
- success: (res) => {
- this.myLat = res.latitude
- this.myLng = res.longitude
- },
- complete: () => {
- this.getRimList_hotel()
- }
- })
- },
- onPageScroll(e) {
- if (!this.queryDom) {
- this.queryDom = uni.createSelectorQuery().in(this)
- this.queryDom
- .select('.evaluate')
- .boundingClientRect((data) => {
- this.domTop = data.top
- })
- .exec()
- this.queryDom
- .select('.rim')
- .boundingClientRect((data) => {
- this.domTopRim = data.top
- })
- .exec()
- }
- if (e.scrollTop > this.domTopRim) {
- this.activeIndex = 2
- } else if (e.scrollTop > this.domTop) {
- this.activeIndex = 1
- } else {
- this.activeIndex = 0
- }
- },
- onReachBottom() {
- if (this.rimActiveIndex != 0) {
- if (this.rimList < this.rimTotal) {
- this.page++
- this.getRimList()
- } else {
- uni.showToast({
- title: '没有更多数据了',
- icon: 'none'
- })
- }
- }
- },
- methods: {
- async getLateTime() {
- const res = await this.$myRequest({
- url: '/mhotel/house/price/queryDate.action'
- })
- // console.log(res)
- if (res.code === 200) {
- this.setTime = res.data.dateTimes.length - 1
- let today = new Date()
- let late = new Date(today.getTime() + 24 * 60 * 60 * 1000 * this.setTime)
- this.earlyTime = this.startTime
- this.lateTime = `${late.getFullYear()}-${(late.getMonth() + 1).toString().padStart(2, 0)}-${late.getDate().toString().padStart(2, 0)}`
- }
- },
- async getRimList_hotel() {
- const res = await this.$myRequest({
- url: '/mhotel/appqueryMsByTown.action',
- data: {
- town: this.town
- }
- })
- // console.log(res)
- if (res.code === 200) {
- this.rimList = res.data
- const i = this.rimList.findIndex((el) => el.id == this.hotelId)
- this.rimList.splice(i, 1)
- if (this.distance && this.rimList.length) {
- this.rimList.forEach((ele) => {
- let lat = ele.hpositionWens.split(',')[0]
- let lng = ele.hpositionWens.split(',')[1]
- ele.distance = this.calculateDistance(lat, lng)
- })
- }
- }
- },
- async getRimList() {
- const res = await this.$myRequest({
- url: '/mhotel/applistAround.action',
- data: {
- page: this.page,
- rows: this.rows,
- rtype: this.rimHeaderList[this.rimActiveIndex]
- }
- })
- // console.log(res)
- if (res.code === 200) {
- this.rimList = [...this.rimList, ...res.rows]
- this.rimTotal = res.total
- if (this.distance && this.rimList.length) {
- this.rimList.forEach((ele) => {
- let lat = ele.jingwei.split(',')[1]
- let lng = ele.jingwei.split(',')[0]
- ele.distance = this.calculateDistance(lat, lng)
- })
- }
- }
- },
- GoRimDetail(item) {
- if (this.rimActiveIndex == 0) {
- this.getTimes()
- this.hotelId = item.id
- this.info = null
- this.list = []
- this.getHotelInfo()
- this.score = ''
- this.commentList = []
- this.getEvaData()
- this.setTime = ''
- this.getLateTime()
- uni.getLocation({
- type: 'gcj02',
- success: (res) => {
- this.myLat = res.latitude
- this.myLng = res.longitude
- },
- complete: () => {
- this.getRimList_hotel()
- }
- })
- uni.pageScrollTo({
- scrollTop: 0
- })
- } else {
- let info = encodeURIComponent(JSON.stringify(item))
- uni.navigateTo({
- url: `/pages/rimDetail/rimDetail?info=${info}`
- })
- }
- },
- // 进入全屏和退出全屏时触发的回调
- fullscreenchange(e) {
- this.isFullScreen = e.detail.fullScreen
- },
- // 点击视频控件时触发的回调
- handleClickVideo(id) {
- this.videoContext = uni.createVideoContext(id)
- if (this.isFullScreen) {
- this.videoContext.stop()
- this.videoContext.exitFullScreen()
- } else {
- this.videoContext.requestFullScreen()
- this.videoContext.play()
- }
- },
- // 点击收藏按钮回调
- async changeCollect(is_collect_hotel) {
- let userInfo = uni.getStorageSync('userInfo')
- let openid = uni.getStorageSync('openid')
- if (userInfo && openid) {
- const res = await this.$myRequest({
- url: is_collect_hotel ? '/mhotel/ahpdelCollectHotel.action' : '/mhotel/ahpcollectHotel.action',
- data: {
- userId: uni.getStorageSync('userInfo').id,
- hotelId: this.hotelId
- }
- })
- // console.log(res)
- if (res.code === 200) {
- uni.showToast({
- title: is_collect_hotel ? '取消收藏成功' : '收藏成功',
- icon: 'success',
- mask: true
- })
- this.info.is_collect_hotel = !this.info.is_collect_hotel
- }
- } else {
- uni.showToast({
- title: '请先登录',
- icon: 'none',
- mask: true
- })
- setTimeout(() => {
- uni.navigateTo({
- url: '/pages/login/login'
- })
- }, 1500)
- }
- },
- // 获取评论数据
- async getEvaData(id) {
- const res = await this.$myRequest({
- url: '/mhotel/abcaevaluatePage.action',
- data: {
- hotelId: id ? id : this.hotelId,
- page: 1,
- rows: 5,
- status: 0
- }
- })
- // console.log(res);
- if (res.code === 200 && res.page.pageList) {
- this.score = res.score.score.toFixed(1)
- this.scoreFw = res.score.scoreFw.toFixed(1)
- this.scoreSs = res.score.scoreSs.toFixed(1)
- this.scoreWs = res.score.scoreWs.toFixed(1)
- this.scoreWz = res.score.scoreWz.toFixed(1)
- this.commentList = res.page.pageList
- this.total = res.page.total
- }
- },
- // 获取民宿信息
- async getHotelInfo(id) {
- const res = await this.$myRequest({
- url: '/mhotel/ahpgetHouseByHotelId.action',
- data: {
- hotelId: id ? id : this.hotelId,
- userId: uni.getStorageSync('userInfo').id,
- queryStartTime: this.startTime,
- queryEndTime: this.endTime
- }
- })
- // console.log(res)
- if (res.code === 200) {
- this.info = res.data.data
- this.list = res.data.data.houseList
- uni.setNavigationBarTitle({
- title: res.data.data.hotel_name
- })
- }
- },
- onClickItem(e) {
- this.activeIndex = e.currentIndex
- if (this.activeIndex === 1) {
- uni.pageScrollTo({
- selector: '.evaluate'
- })
- } else if (this.activeIndex === 0) {
- uni.pageScrollTo({
- scrollTop: 0
- })
- } else if (this.activeIndex === 2) {
- uni.pageScrollTo({
- selector: '.rim'
- })
- }
- },
- onClickItemRim(index) {
- this.rimActiveIndex = index
- this.pgae = 1
- this.rimList = []
- if (this.rimActiveIndex == 0) {
- this.getRimList_hotel()
- } else {
- this.getRimList()
- }
- },
- monthSwitch(e) {
- let time = e.year + '-' + e.month.toString().padStart(2, 0) + '-01'
- this.handleOpen(time)
- },
- // 选择日期确定回调
- handleConfirm(e) {
- this.startTime = e.range.before
- this.endTime = e.range.after
- this.dayList = e.range.data
- this.nightNum = e.range.data.length - 1
- this.getHotelInfo()
- },
- // 点击地图图标回调
- handleMap(item) {
- if (this.showLocation) {
- let lat = item.hpositionWens.split(',')[0] * 1
- let lng = item.hpositionWens.split(',')[1] * 1
- uni.openLocation({
- latitude: lat,
- longitude: lng,
- name: item.hname,
- address: item.hposition,
- success: () => {}
- })
- } else {
- uni.showModal({
- content: '当前没有定位权限,是否去设置打开?',
- confirmText: '确认',
- cancelText: '取消',
- success: (res) => {
- if (res.confirm) {
- uni.openSetting({
- success: (res) => {
- this.showLocation = true
- this.handleMap(item)
- }
- })
- } else {
- uni.showToast({
- title: '获取定位权限失败,无法使用地图功能',
- icon: 'none',
- mask: true
- })
- }
- }
- })
- }
- },
- // 点击电话图标回调
- handlePhone(phone) {
- uni.makePhoneCall({
- phoneNumber: phone
- })
- },
- // 点击弹窗关闭图标回调
- handleClosePop() {
- this.showPage = false
- this.$refs.popup.close()
- },
- // 点击每一个户型回调
- handleLookDetail(item) {
- this.roomInfo = item
- this.showPage = true
- this.$refs.popup.open('bottom')
- },
- // 点击设施详情回调
- goPageDetailInfo() {
- uni.navigateTo({
- url: `/pages/detailInfo/detailInfo?hotelId=${this.hotelId}`
- })
- },
- // 点击 订 预定 按钮回调
- goPageAffOrder(item) {
- let flag = uni.getStorageSync('openid')
- let tokenId = uni.getStorageSync('tokenId')
- if (flag && tokenId) {
- if (!this.startTime) {
- uni.showToast({
- title: '请选择入住时间',
- icon: 'none'
- })
- return
- }
- if (!this.endTime) {
- uni.showToast({
- title: '请选择离店时间',
- icon: 'none'
- })
- return
- }
- if (item.remainRooms * 1 > 0) {
- this.$refs.popup.close()
- this.showPage = false
- let info = JSON.stringify({
- nightNum: this.nightNum,
- startTimeDay: this.startTime.slice(8, 10),
- startTimeMonth: this.startTime.slice(5, 7),
- startTimeWeek: this.getWeek(this.startTime),
- endTimeDay: this.endTime.slice(8, 10),
- endTimeMonth: this.endTime.slice(5, 7),
- endTimeWeek: this.getWeek(this.endTime),
- item: item,
- queryStartTime: this.startTime,
- queryEndTime: this.endTime,
- dayList: this.dayList,
- hTypeName: this.info.hTypeName,
- hotelName: this.info.hotel_name,
- hotelId: this.hotelId
- })
- uni.navigateTo({
- url: `/pages/affirmOrder/affirmOrder?info=${info}`
- })
- } else {
- uni.showToast({
- title: '该房间已售罄',
- icon: 'none',
- mask: true
- })
- }
- } else {
- uni.showToast({
- title: '请先登录',
- icon: 'none',
- mask: true
- })
- setTimeout(() => {
- uni.navigateTo({
- url: '/pages/login/login'
- })
- }, 1500)
- }
- },
- // 点击日期区域回调
- async handleOpen(time) {
- const res = await this.$myRequest({
- url: '/mhotel/house/price/priceCalendar.action',
- data: {
- merchantId: this.info.managerId,
- startTime: time ? time : this.startTime
- }
- })
- if (res.code === 200) {
- this.selected = res.data
- }
- if (!time) {
- this.$refs.calendar.open()
- }
- },
- // 传入参数获取当前是星期几
- getWeek(time) {
- let date = new Date(time)
- let week = date.getDay()
- let weekList = ['日', '一', '二', '三', '四', '五', '六']
- let res = '周' + weekList[week]
- return res
- },
- // 获取今明两天的日期 YYYY-MM-DD
- getTimes() {
- // 今天
- let today = new Date()
- // 明天
- let tomorrow = new Date(today.getTime() + 24 * 60 * 60 * 1000)
- this.startTime = `${today.getFullYear()}-${(today.getMonth() + 1).toString().padStart(2, 0)}-${today.getDate().toString().padStart(2, 0)}`
- this.endTime = `${tomorrow.getFullYear()}-${(tomorrow.getMonth() + 1).toString().padStart(2, 0)}-${tomorrow.getDate().toString().padStart(2, 0)}`
- this.dayList = [this.startTime, this.endTime]
- },
- handleGoPull(linkProUrl) {
- let temURL = linkProUrl.slice(22)
- let url = 'https://f10mfe54bri.720yun.com' + temURL
- uni.navigateTo({
- url: `/pages/web/web?url=${url}`
- })
- },
- // 点击每一个评价回调
- handleGoDetail(item) {
- uni.navigateTo({
- url: `/pages/appraiseDetail/appraiseDetail?id=${item.id}`
- })
- },
- // 点击评价图片回调
- handleClickImg(url, index) {
- if (this.videoContext) {
- this.videoContext.stop()
- }
- // 预览图片
- uni.previewImage({
- current: index,
- urls: [url]
- })
- },
- handleGoPage() {
- uni.navigateTo({
- url: `/pages/appraise/appraise?hotelId=${this.hotelId}`
- })
- },
- handleClickSwiper(urls, current) {
- const temList = urls.map((ele) => ele.url)
- uni.previewImage({
- urls: temList,
- current
- })
- },
- // 计算两个点之间的距离
- calculateDistance(lat, lng) {
- let centerLat = lat
- let centerLng = lng
- let red1 = (this.myLat * Math.PI) / 180.0
- let red2 = (centerLat * Math.PI) / 180.0
- let a = red1 - red2
- let b = (this.myLng * Math.PI) / 180.0 - (centerLng * Math.PI) / 180.0
- let R = 6378137
- let distance = R * 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) + Math.cos(red1) * Math.cos(red2) * Math.pow(Math.sin(b / 2), 2)))
- let res = (distance / 1000).toFixed(2) * 1
- return res
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- padding-bottom: 20rpx;
- min-height: 100vh;
- background-color: #f2f3f5;
- .control {
- z-index: 999;
- position: sticky;
- top: 0;
- width: 100%;
- height: 100rpx;
- background-color: #fff;
- }
- .banner {
- position: relative;
- width: 750rpx;
- height: 422rpx;
- .swiper {
- height: 422rpx;
- .swiper_item {
- width: 100%;
- height: 100%;
- .img {
- width: 100%;
- height: 100%;
- }
- }
- }
- .img {
- width: 100%;
- height: 100%;
- }
- .slogan {
- position: absolute;
- top: 0;
- left: 0;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 163rpx;
- height: 60rpx;
- background-color: rgba(255, 255, 255, 0.4);
- img {
- width: 125rpx;
- height: 44rpx;
- }
- }
- .full {
- position: absolute;
- top: 13rpx;
- right: 20rpx;
- display: flex;
- align-items: center;
- justify-content: space-around;
- width: 173rpx;
- height: 60rpx;
- color: #fff;
- font-size: 24rpx;
- border-radius: 11rpx;
- background-color: rgba(0, 0, 0, 0.5);
- img {
- width: 40rpx;
- height: 40rpx;
- }
- }
- .collect {
- position: absolute;
- top: 68rpx;
- left: 8rpx;
- }
- }
- .detail {
- z-index: 1;
- float: left;
- margin-top: -177rpx;
- box-sizing: border-box;
- padding: 0 30rpx 30rpx;
- width: 710rpx;
- border-radius: 10rpx;
- background-color: #fff;
- .detail_name {
- margin-top: 25rpx;
- font-size: 34rpx;
- font-weight: bold;
- }
- .detail_info {
- display: flex;
- justify-content: space-between;
- margin-top: 10rpx;
- .info_left {
- color: #999999;
- font-size: 20rpx;
- }
- .info_right {
- display: flex;
- align-items: center;
- color: #096562;
- font-size: 24rpx;
- img {
- margin-left: 6rpx;
- width: 10rpx;
- height: 20rpx;
- }
- }
- }
- .detail_group {
- display: flex;
- flex-wrap: wrap;
- margin-top: 5rpx;
- width: 450rpx;
- .group_item {
- display: flex;
- align-items: center;
- margin-right: 10rpx;
- margin-bottom: 10rpx;
- color: #999999;
- font-size: 20rpx;
- img {
- margin-right: 5rpx;
- width: 22rpx;
- height: 22rpx;
- }
- }
- }
- .address {
- display: flex;
- justify-content: space-between;
- margin-top: 8rpx;
- font-size: 28rpx;
- font-weight: bold;
- .address_left {
- width: 480rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .address_right {
- display: flex;
- .right_box {
- margin-left: 28rpx;
- width: 50rpx;
- height: 78rpx;
- img {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .distance {
- margin-top: -35rpx;
- color: #999999;
- font-size: 24rpx;
- }
- }
- .body {
- float: left;
- margin-top: 20rpx;
- // padding-bottom: 30rpx;
- width: 710rpx;
- border-radius: 10rpx;
- background-color: #fff;
- .body_header {
- display: flex;
- justify-content: space-around;
- box-sizing: border-box;
- padding: 0 30rpx;
- height: 150rpx;
- .header_start {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 213rpx;
- height: 150rpx;
- font-size: 30rpx;
- .header_top {
- margin-bottom: 10rpx;
- color: #999999;
- font-size: 24rpx;
- }
- .header_bottom {
- font-size: 34rpx;
- font-weight: bold;
- }
- }
- .header_night {
- display: flex;
- justify-content: center;
- align-items: center;
- .night_line {
- width: 17rpx;
- height: 1rpx;
- background-color: #296de3;
- }
- .night_box {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 81rpx;
- height: 46rpx;
- font-size: 24rpx;
- border-radius: 66rpx;
- border: 1rpx solid #296de3;
- }
- }
- .header_end {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 213rpx;
- height: 150rpx;
- font-size: 30rpx;
- .header_top {
- margin-bottom: 10rpx;
- color: #999999;
- font-size: 24rpx;
- }
- .header_bottom {
- font-size: 34rpx;
- font-weight: bold;
- }
- }
- }
- .body_content {
- .body_box {
- box-sizing: border-box;
- padding: 0 30rpx;
- margin-bottom: 30rpx;
- display: flex;
- height: 193rpx;
- border-bottom: 1rpx solid #cccccc;
- .box_left {
- width: 213rpx;
- height: 161rpx;
- border-radius: 5rpx;
- img {
- width: 100%;
- height: 100%;
- }
- }
- .box_center {
- margin-left: 16rpx;
- .center_top {
- font-size: 34rpx;
- font-weight: bold;
- }
- .center_center {
- display: flex;
- flex-wrap: wrap;
- margin-top: 10rpx;
- color: #999999;
- font-size: 24rpx;
- .center_item {
- margin-right: 15rpx;
- }
- }
- .center_bottom {
- margin-top: 25rpx;
- .img {
- margin-right: 15rpx;
- width: 30rpx;
- height: 30rpx;
- }
- }
- }
- .box_right {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- margin-left: auto;
- margin-top: 20rpx;
- .right_price {
- color: #ff5733;
- font-size: 42rpx;
- text {
- font-size: 24rpx;
- }
- }
- .right_btn {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 10rpx;
- width: 100rpx;
- height: 66rpx;
- color: #fff;
- font-size: 36rpx;
- border-radius: 11rpx;
- background-color: #096562;
- }
- .inactive {
- background-color: #cccccc;
- }
- }
- }
- .body_pop {
- position: relative;
- height: 955rpx;
- border-radius: 22rpx 22rpx 0 0;
- background-color: #fff;
- overflow-y: auto;
- .pop_swiper {
- height: 422rpx;
- border-radius: 22rpx 22rpx 0 0;
- .pop_swiper_item {
- width: 100%;
- height: 100%;
- .img {
- width: 100%;
- height: 100%;
- border-radius: 22rpx 22rpx 0 0;
- }
- }
- }
- .pop_icon {
- position: absolute;
- top: 20rpx;
- right: 30rpx;
- width: 58rpx;
- height: 58rpx;
- }
- .pop_body {
- box-sizing: border-box;
- padding: 0 20rpx 30rpx;
- .body_title {
- margin-top: 30rpx;
- font-size: 32rpx;
- font-weight: bold;
- }
- .body_tags {
- display: flex;
- flex-wrap: wrap;
- margin-top: 20rpx;
- .tags_item {
- display: flex;
- align-items: center;
- margin-right: 76rpx;
- margin-bottom: 20rpx;
- color: #383838;
- font-size: 24rpx;
- .img {
- margin-right: 5rpx;
- width: 28rpx;
- height: 28rpx;
- }
- }
- }
- .body_title2 {
- margin-top: 20rpx;
- font-size: 28rpx;
- }
- .body_detail {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- // align-items: flex-end;
- box-sizing: border-box;
- padding: 20rpx 30rpx;
- margin-top: 18rpx;
- width: 710rpx;
- height: 266rpx;
- font-size: 24rpx;
- border-radius: 7rpx;
- background-color: #f2f2f2;
- .detail_old {
- text-align: end;
- text-decoration: line-through;
- }
- .detail_box {
- display: flex;
- justify-content: space-between;
- color: #808080;
- text {
- color: #ff5733;
- }
- }
- .detail_new {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- font-size: 24rpx;
- .color {
- color: #ff5733;
- }
- .price {
- font-size: 36rpx;
- }
- .ml_10 {
- margin-left: 10rpx;
- }
- }
- }
- .body_bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-top: 250rpx;
- height: 80rpx;
- .bottom_left {
- display: flex;
- align-items: center;
- color: #333333;
- font-size: 24rpx;
- .img {
- margin-right: 10rpx;
- width: 48rpx;
- height: 48rpx;
- }
- }
- .bottom_right {
- display: flex;
- align-items: center;
- color: #ff5733;
- font-size: 40rpx;
- font-weight: bold;
- text {
- font-size: 24rpx;
- }
- .btn {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-left: 30rpx;
- width: 238rpx;
- height: 80rpx;
- color: #fff;
- font-size: 32rpx;
- font-weight: 400;
- border-radius: 64rpx;
- background-color: #096562;
- }
- .inactive {
- background-color: #cccccc;
- }
- }
- }
- }
- }
- }
- .noData {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding-bottom: 20rpx;
- img {
- margin-top: 60rpx;
- width: 600rpx;
- height: 600rpx;
- }
- }
- }
- .evaluate {
- width: 710rpx;
- background-color: #f2f3f5;
- .evaluate_title {
- line-height: 83rpx;
- font-size: 32rpx;
- font-weight: bold;
- }
- .evaluate_body {
- display: flex;
- flex-direction: column;
- // margin-bottom: 20rpx;
- width: 710rpx;
- border-radius: 11rpx;
- background-color: #fff;
- .header {
- display: flex;
- align-items: center;
- margin: 25rpx 20rpx;
- width: 670rpx;
- height: 120rpx;
- border-radius: 13rpx;
- background-color: #e4f0ef;
- .header_box {
- display: flex;
- height: 70rpx;
- .box_left {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 140rpx;
- color: #096562;
- font-size: 60rpx;
- font-weight: 900;
- border-right: 1rpx solid #cccccc;
- }
- .box_right {
- flex: 1;
- display: flex;
- flex-wrap: wrap;
- color: #808080;
- font-size: 24rpx;
- .right_item {
- display: flex;
- align-items: center;
- width: 50%;
- .item_info {
- margin-left: 33rpx;
- }
- .item_progress {
- margin-right: 20rpx;
- padding: 0 13rpx;
- flex: 1;
- }
- }
- }
- }
- }
- .evaluate_box {
- box-sizing: border-box;
- padding: 0 20rpx;
- margin: 0 auto 20rpx;
- width: 710rpx;
- border-radius: 18rpx;
- background-color: #fff;
- .box_userInfo {
- display: flex;
- align-items: center;
- height: 115rpx;
- img {
- width: 70rpx;
- height: 70rpx;
- border-radius: 50%;
- }
- .userInfo_msg {
- margin-left: 18rpx;
- .msg_name {
- font-size: 28rpx;
- }
- .msg_star {
- margin-left: -5rpx;
- margin-top: 5rpx;
- }
- }
- }
- .box_time {
- display: flex;
- align-items: center;
- color: #a6a6a6;
- font-size: 24rpx;
- }
- .box_content {
- margin-top: 15rpx;
- font-size: 24rpx;
- color: #000;
- }
- .box_img {
- display: grid;
- grid-template-columns: 1fr 1fr 1fr;
- grid-auto-rows: auto;
- gap: 10rpx;
- margin-top: 20rpx;
- img {
- width: 216rpx;
- height: 216rpx;
- border-radius: 20rpx;
- }
- .video {
- width: 216rpx;
- height: 216rpx;
- border-radius: 20rpx;
- }
- }
- }
- .foot {
- display: flex;
- justify-content: center;
- align-items: center;
- padding-bottom: 20rpx;
- height: 68rpx;
- font-size: 24rpx;
- font-weight: bold;
- color: #096663;
- img {
- margin-left: 10rpx;
- width: 10rpx;
- height: 18rpx;
- }
- }
- .noData {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding-bottom: 60rpx;
- img {
- margin-top: 160rpx;
- width: 600rpx;
- height: 600rpx;
- }
- }
- }
- }
- .rim {
- width: 710rpx;
- background-color: #f2f3f5;
- .rim_title {
- line-height: 80rpx;
- font-size: 32rpx;
- font-weight: bold;
- }
- .rim_control {
- margin-bottom: 10rpx;
- line-height: 85rpx;
- font-size: 28rpx;
- color: #808080;
- white-space: nowrap;
- overflow-x: auto;
- background-color: #fff;
- .control_box {
- padding: 0 15rpx 0 20rpx;
- .text {
- padding-bottom: 5rpx;
- }
- .active {
- color: #096562;
- border-bottom: 5rpx solid #096562;
- }
- }
- }
- .rim_body {
- .rim_box {
- display: flex;
- margin-bottom: 20rpx;
- width: 710rpx;
- height: 150rpx;
- background-color: #fff;
- img {
- width: 126rpx;
- height: 150rpx;
- }
- .box_info {
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- padding: 0 24rpx;
- box-sizing: border-box;
- width: 584rpx;
- height: 150rpx;
- .info_top {
- font-size: 28rpx;
- font-weight: bold;
- }
- .info_center {
- font-size: 24rpx;
- color: #808080;
- }
- .info_bottom {
- display: flex;
- align-items: center;
- font-size: 24rpx;
- .bottom_rate {
- color: #ff5733;
- }
- .bottom_num {
- margin-left: 15rpx;
- color: #a6a6a6;
- }
- .bottom_price {
- margin-left: auto;
- font-size: 28rpx;
- color: #ff5733;
- text {
- font-size: 20rpx;
- color: #a6a6a6;
- }
- }
- }
- }
- }
- }
- .noData {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding-bottom: 60rpx;
- img {
- margin-top: 160rpx;
- width: 500rpx;
- height: 500rpx;
- }
- }
- .rim_more {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 710rpx;
- height: 70rpx;
- color: #096663;
- font-size: 24rpx;
- font-weight: bold;
- background-color: #fff;
- img {
- margin-left: 10rpx;
- margin-top: 2rpx;
- width: 10rpx;
- height: 18rpx;
- }
- }
- }
- .scenicSpot {
- width: 710rpx;
- background-color: #f2f3f5;
- .scenicSpot_title {
- line-height: 83rpx;
- font-size: 32rpx;
- font-weight: bold;
- }
- .scenicSpot_body {
- .scenicSpot_box {
- display: flex;
- margin-bottom: 20rpx;
- width: 710rpx;
- height: 150rpx;
- background-color: #fff;
- img {
- width: 126rpx;
- height: 150rpx;
- }
- .box_info {
- display: flex;
- flex-direction: column;
- justify-content: space-evenly;
- padding: 0 24rpx;
- box-sizing: border-box;
- width: 584rpx;
- height: 150rpx;
- .info_top {
- font-size: 28rpx;
- font-weight: bold;
- }
- .info_center {
- font-size: 24rpx;
- color: #808080;
- }
- .info_bottom {
- display: flex;
- align-items: center;
- font-size: 24rpx;
- .bottom_rate {
- color: #ff5733;
- }
- .bottom_num {
- margin-left: 15rpx;
- color: #a6a6a6;
- }
- .bottom_price {
- margin-left: auto;
- font-size: 28rpx;
- color: #ff5733;
- text {
- font-size: 20rpx;
- color: #a6a6a6;
- }
- }
- }
- }
- }
- }
- .scenicSpot_more {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 710rpx;
- height: 70rpx;
- color: #096663;
- font-size: 24rpx;
- font-weight: bold;
- background-color: #fff;
- img {
- margin-left: 10rpx;
- margin-top: 2rpx;
- width: 10rpx;
- height: 18rpx;
- }
- }
- }
- }
- </style>
|