onlineBooking.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622
  1. <template>
  2. <view class="box">
  3. <view class="top">
  4. <view class="shopTop">
  5. <swiper class="swiper" circular :autoplay="true" :interval="interval"
  6. :duration="duration" v-if="shopInfo.imgs">
  7. <swiper-item v-for="(item,index) in shopInfo.imgs.split(',')" v-if="item">
  8. <view class="swiper-item">
  9. <img mode="aspectFit" :src="item" alt="">
  10. </view>
  11. </swiper-item>
  12. </swiper>
  13. </view>
  14. <!-- 门店详情 -->
  15. <view class="newshopNames" v-if="shopInfo">
  16. <view class="newshopDstop">
  17. <view class="newshopDname">{{shopInfo.shopName}}</view>
  18. <view class="newshopDtime">
  19. 营业时间: <span>{{shopInfo.startTime}} - {{shopInfo.endTime}}</span>
  20. </view>
  21. <view class="newshopDbqbox" v-if="shopInfo.brands">
  22. <view class="newshopDbqline" v-for="(item,index) in shopInfo.brands.split(',')">{{item}}</view>
  23. </view>
  24. </view>
  25. <view class="newshopDadressBpx">
  26. <view class="newshopDaleft">
  27. <view class="newshopDaleftTop">
  28. <!-- <img src="../../static/timg/icon_coordinate@2x.png" alt="" class="shopaddressIcon"> -->
  29. <!-- <span class="shopDdistance" v-if="Number(shopInfo.distance)>1">距离{{shopInfo.distance}}km</span>
  30. <span class="shopDdistance" v-else-if="Number(shopInfo.distance)">距离{{shopInfo.distance*1000}}m</span>
  31. <span class="shopDdistance" v-else>距离--km</span> -->
  32. </view>
  33. <view class="newshopDadressName">{{shopInfo.address?shopInfo.address:'--'}}</view>
  34. </view>
  35. <view class="newshopDaright">
  36. <view class="newshopDrline" @click="goLocation()">
  37. <img src="../../static/timg/icon_map@2x.png" alt="" class="newshopDrlineimg">
  38. <view class="newshopDrlineTxt">地图</view>
  39. </view>
  40. <view class="newshopDRsx"></view>
  41. <view class="newshopDrline" @click="phones()">
  42. <img src="../../static/timg/icon_phone@2x.png" alt="" class="newshopDrlineimg">
  43. <view class="newshopDrlineTxt">电话</view>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <!-- 预约详情-->
  50. <view class="yuyue-container">
  51. <view class="yuyueLeft">
  52. <view class="yuyueleftLine" v-for="(item,index) in leftData" @click="listItemWxInfo(item,index)" :class="{leftActive:leftIndex==index}">{{item.Name}}</view>
  53. </view>
  54. <view class="yuyueRight">
  55. <view class="yuyueRightTitle">{{rightTitle}}</view>
  56. <view v-for="(item,index) in rightData" @click="checkItem(item)" style="padding-top: 10rpx;padding-left: 24rpx;padding-right: 24rpx;">
  57. <view class="yrTop">
  58. <view class="ItemName">{{item.ItemName}}</view>
  59. <image src="../../static/timg/ickno.png" v-if="selectedItems.findIndex(i=>i.ID===item.ID)==-1" mode="" class="yrTopImg"></image>
  60. <image src="../../static/timg/icon_checked@2x.png" v-if="selectedItems.findIndex(i=>i.ID===item.ID)!=-1" mode="" class="yrTopImg"></image>
  61. </view>
  62. <view class="itemSm">
  63. {{item.Comment}}
  64. </view>
  65. <view class="Price">
  66. <view class="yuyue-price"> <span class="qianhaospan">¥</span> {{item.Price||'--'}} </view>
  67. </view>
  68. </view>
  69. <view class="nodataBox" v-if="rightData.length==0">
  70. <image src="http://dmsphoto.66km.com.cn/thFiles/3C95A4C5-73F8-4B34-902B-703B8A0825C9.png" mode="widthFix" class="nodataImg"></image>
  71. <view class="noTxt">暂无数据</view>
  72. </view>
  73. </view>
  74. </view>
  75. <view class="bottom-container newbottom-container">
  76. <view class="newyyBox" @click="yuyueDetail">
  77. <view class="yyBleft">
  78. <img src="../../static/timg/icon_qingdan@2x.png" alt="" class="yyBleftimg">
  79. </view>
  80. <view>
  81. <view class="totalPriceBox"><span>预估总额:</span > <span class="totalPrice" :style="{color:'#'+themeColor}"><span class="qianhaospan">¥</span >{{totalPrice}}</span> </view>
  82. <span class="hejishul">合计数量: {{selectedItems.length}}</span>
  83. </view>
  84. </view>
  85. <view href="javascript:;" :style="{background:'#'+themeColor}" class=" newbottom-container-button" @click="yuyue">立即预约</view>
  86. </view>
  87. <view class="yydetailBox" v-if="yydetailShow" @click="yydetailShow=false">
  88. <view class="yyDetailTop" @click.stop="">
  89. <view class="yyDetailTopleft">清单</view>
  90. <view class="yyDetailTopRight">
  91. <view class="yydetalqk" @click="yyqingk">清空</view>
  92. <view class="yydetailx" @click="yydetailShow=false">X</view>
  93. </view>
  94. </view>
  95. <view class="yydetailCont" @click.stop="">
  96. <view class="yydetailContLine" v-for="(item,index) in selectedItems">
  97. <view class="yydlineName">{{item.ItemName}}</view>
  98. <view class="yydlineCommnt" v-if="true">{{item.Comment}}</view>
  99. <view class="yydPrice">¥{{item.Price}}</view>
  100. </view>
  101. </view>
  102. </view>
  103. </view>
  104. </template>
  105. <script>
  106. export default {
  107. data() {
  108. return {
  109. interval:3000,
  110. duration:500,
  111. distance:0.05,
  112. leftIndex:0,
  113. yydetailShow:false,
  114. userInfo:'',
  115. bizTagId:'',
  116. leftData:'',
  117. rightData:'',
  118. rightTitle:'',
  119. selectedItems: [],
  120. location: {
  121. lng: '',
  122. lat: '',
  123. },
  124. shopInfo:'',
  125. naShopId:'',
  126. themeColor:'',
  127. }
  128. },
  129. onLoad(opt) {
  130. this.userInfo = uni.getStorageSync("userInfo");
  131. this.themeColor = uni.getStorageSync("themeColor");
  132. this.naShopId=opt.naShopId;
  133. if(this.naShopId == null ||this.naShopId == 'null' ){
  134. this.naShopId=''
  135. }
  136. console.log(this.naShopId)
  137. var that = this;
  138. that.getInfo()
  139. //this.listBigTags()
  140. },
  141. computed: {
  142. totalPrice () {
  143. return this.selectedItems.reduce((i, k) => {
  144. return Number(i) + Number(k.Price)
  145. }, 0).toFixed(2)
  146. }
  147. },
  148. methods: {
  149. getInfo(){
  150. uni.showLoading({
  151. title: '加载中'
  152. })
  153. var that=this;
  154. this.$http('openreservation/getInfo', {
  155. lat: this.location.lat ? this.location.lat : '',
  156. lng: this.location.lng ? this.location.lng : '',
  157. shopId:this.naShopId,
  158. }, 'GET').then(res => {
  159. this.shopInfo = res.data.shopInfo;
  160. uni.setStorage({
  161. key: 'yyshopInfo',
  162. data:that.shopInfo,
  163. success: function () {
  164. }
  165. });
  166. this.listBigTags()
  167. })
  168. },
  169. listBigTags(){
  170. uni.showLoading({
  171. title: '加载中'
  172. });
  173. this.$http('openreservation/listBigTags', {
  174. shopId:this.shopInfo.id,
  175. unionId:this.userInfo.unionId
  176. }, 'GET').then(res => {
  177. uni.hideLoading();
  178. this.bizTagId=res.data[0].ID
  179. this.rightTitle=res.data[0].Name
  180. this.leftData=res.data;
  181. this.GetlistItemWxInfo()
  182. })
  183. },
  184. GetlistItemWxInfo(){
  185. //console.log("listItemWxInfo")
  186. uni.showLoading({
  187. title: '加载中'
  188. });
  189. console.log("bizTagId"+this.bizTagId)
  190. this.$http('openreservation/listItemWxInfo', {
  191. shopId:this.shopInfo.id,
  192. bizTagId:this.bizTagId
  193. }, 'GET').then(res => {
  194. //console.log(res)
  195. uni.hideLoading();
  196. // es.data.forEach(mode => {
  197. // mode.ck=false
  198. // })
  199. this.rightData=res.data
  200. console.log(this.rightData)
  201. })
  202. },
  203. checkItem (item) {
  204. let index = this.selectedItems.findIndex(i => i.ID === item.ID)
  205. if (index !== -1) {
  206. this.selectedItems.splice(index, 1)
  207. } else {
  208. this.selectedItems.push(item)
  209. }
  210. },
  211. goLocation(){
  212. var that = this;
  213. if (!that.shopInfo.lat || !that.shopInfo.lng) {
  214. uni.showToast({
  215. title: '该店铺未设置定位',
  216. icon: 'none',
  217. duration: 3000
  218. });
  219. } else {
  220. uni.openLocation({
  221. latitude: Number(that.shopInfo.lat),
  222. longitude: Number(that.shopInfo.lng),
  223. name: that.shopInfo.shopName,
  224. address: that.shopInfo.provinceName+that.shopInfo.cityName+that.shopInfo.areaName+that.shopInfo.address,
  225. success: function() {
  226. console.log('success');
  227. },
  228. fail(err) {
  229. console.log(err)
  230. }
  231. });
  232. }
  233. },
  234. phones(){
  235. uni.makePhoneCall({
  236. phoneNumber: this.shopInfo.contactorPhone
  237. });
  238. },
  239. listItemWxInfo(item,index){
  240. console.log(item)
  241. this.leftIndex=index;
  242. this.bizTagId=item.ID
  243. if(item.ID==''){
  244. this.bizTagId=''
  245. }
  246. this.rightTitle=item.Name;
  247. this.GetlistItemWxInfo()
  248. },
  249. yuyueDetail(){
  250. this.yydetailShow=true;
  251. },
  252. yyqingk(){
  253. this.selectedItems = []
  254. },
  255. yuyue(){
  256. if (!this.selectedItems.length) {
  257. uni.showToast({
  258. title: '请选择预约项目',
  259. icon: 'none',
  260. duration: 3000
  261. });
  262. } else {
  263. this.$store.commit('mutationsyuyueData', this.selectedItems)
  264. uni.navigateTo({
  265. url:'confirmYuyue'
  266. })
  267. }
  268. }
  269. }
  270. }
  271. </script>
  272. <style scoped lang="less">
  273. .nodataBox{
  274. text-align: center;
  275. }
  276. .nodataImg{
  277. width: 400rpx;
  278. padding-top: 100rpx;
  279. }
  280. .noTxt{
  281. font-size: 32rpx;
  282. color: #999999;
  283. padding-top: 50rpx;
  284. }
  285. .box{
  286. background: #F4F5F7;
  287. min-height: 100vh;
  288. }
  289. .swiper-item img{
  290. width: 750rpx;
  291. height: 500rpx;
  292. }
  293. .swiper-item{
  294. height: 500rpx;
  295. }
  296. .swiper{
  297. height: 500rpx;
  298. }
  299. .shopTop{
  300. height: 500rpx;
  301. }
  302. .newshopNames{
  303. width: 702rpx;
  304. margin-left: 24rpx;
  305. background: #FFFFFF;
  306. border-radius: 10rpx;
  307. margin-top: -60rpx;
  308. position: relative;
  309. }
  310. .newshopDname{
  311. color: #333333;font-size: 30rpx;
  312. padding-left: 20rpx;
  313. padding-top: 23rpx;
  314. font-weight: 500;
  315. }
  316. .newshopDtime{
  317. color: #999999;
  318. font-size: 24rpx;
  319. padding-left: 20rpx;
  320. padding-top: 10rpx;
  321. font-weight: 400;
  322. }
  323. .newshopDstop{
  324. padding-bottom: 21rpx;
  325. border-bottom: 1px solid #EEEEEE;
  326. }
  327. .newshopDetailtop{
  328. margin-bottom: 20rpx;
  329. }
  330. .newshopDbqbox{
  331. display: flex;
  332. flex-wrap: wrap;
  333. padding-left: 20rpx;
  334. }
  335. .newshopDbqline{
  336. line-height: 30rpx;
  337. height: 30rpx;
  338. border-radius: 4rpx;
  339. border: 1px solid #F19D01;
  340. color: #f19D01;
  341. font-size: 24rpx;
  342. padding: 0 8rpx;
  343. margin-right: 16rpx;
  344. margin-top: 10rpx;
  345. }
  346. .newshopDbqbox{
  347. padding-top: 5rpx;
  348. }
  349. .shopaddressIcon{
  350. width: 22rpx;
  351. height: 30rpx;
  352. }
  353. .shopDdistance{
  354. color: #3C3C3C;font-size: 24rpx;line-height: 30rpx;padding-left: 16rpx;
  355. font-weight: 500;
  356. }
  357. .newshopDaleftTop{
  358. display: flex;
  359. }
  360. .newshopDadressBpx{
  361. display: flex;
  362. padding: 20rpx 20rpx;
  363. background: url(http://dmsphoto.66km.com.cn/thFiles/010748B7-5678-46C3-941B-60B3CD4D10CB.png) no-repeat;
  364. background-size: 100% 100%;
  365. }
  366. .newshopDadressName{
  367. color: #999999;padding-top: 16rpx;
  368. font-size: 24rpx;line-height: 24rpx;
  369. width: 480rpx;font-weight: 400;
  370. }
  371. .newshopDrlineimg{
  372. width: 44rpx;
  373. height: 44rpx;
  374. }
  375. .newshopDrlineTxt{
  376. color: #999999;
  377. font-size: 24rpx;
  378. text-align: center;
  379. padding-top: 7rpx;
  380. font-weight: 400;
  381. }
  382. .newright-item .yuyue-item{
  383. padding-top: 20rpx;
  384. }
  385. .newshopDRsx{
  386. width: 2rpx;
  387. height: 71rpx;
  388. background: #EEEEEE;
  389. }
  390. .newshopDaright{
  391. display: flex;
  392. justify-content: space-between;
  393. width: 150rpx;
  394. padding-left: 20rpx;
  395. }
  396. .yrTopImg{
  397. width: 36rpx;
  398. height: 36rpx;
  399. }
  400. .yuyue-container{
  401. display: flex;
  402. margin-top: 20rpx;
  403. padding-bottom: 120rpx;
  404. min-height: 40vh;
  405. }
  406. .yuyueLeft{
  407. background: #F5F5F5;
  408. width: 154rpx;
  409. }
  410. .yuyueRight{
  411. width: 596rpx;
  412. background: #FFFFFF;
  413. }
  414. .yuyueleftLine{
  415. font-size: 26rpx;
  416. padding:30rpx 24rpx;
  417. color: #3C3C3C;
  418. font-weight: 400;
  419. }
  420. .leftActive{
  421. background: #FFFFFF;
  422. font-weight: 500;
  423. }
  424. .yuyueRightTitle{
  425. color: #999999;font-size: 26rpx;
  426. background: #F9F9F9;
  427. padding-left: 24rpx;
  428. line-height: 62rpx;
  429. }
  430. .yrTop{
  431. display: flex;
  432. justify-content: space-between;
  433. }
  434. .ItemName{
  435. color: #3C3C3C;
  436. font-size: 28rpx;
  437. width: 480rpx;
  438. }
  439. .itemSm{
  440. color: #999999;
  441. line-height: 33rpx;
  442. font-size: 24rpx;
  443. text-overflow: -o-ellipsis-lastline;
  444. overflow: hidden;
  445. text-overflow: ellipsis;
  446. display: -webkit-box;
  447. -webkit-line-clamp: 2;
  448. line-clamp: 2;
  449. -webkit-box-orient: vertical;
  450. }
  451. .qianhaospan{
  452. font-size: 22rpx;
  453. }
  454. .yuyue-price{
  455. color: #FF3B30;
  456. font-size: 32rpx;
  457. padding-top: 8rpx;
  458. border-bottom: 1px solid #EEEEEE;
  459. padding-bottom: 19rpx;
  460. }
  461. .newbottom-container-button{
  462. width: 203rpx;
  463. height: 74rpx;
  464. background: #D53533;
  465. border-radius: 37rpx;
  466. color: #FEFFFE;
  467. font-size: 30rpx;
  468. line-height: 74rpx;
  469. text-align: center;
  470. }
  471. .newbottom-container{
  472. display: flex;
  473. justify-content: space-between;
  474. padding-left: 32rpx !important;
  475. width: 696rpx !important;
  476. z-index: 66;
  477. padding: 23rpx 32rpx !important;
  478. height: 76rpx !important;
  479. position: fixed;
  480. left: 0;
  481. bottom: 0;
  482. background: #FFFFFF;
  483. box-shadow: 0px -2px 10px 0px rgba(153,153,153,0.1000);
  484. }
  485. .yuyue-main .newright-item{
  486. padding-bottom: 19rpx;
  487. }
  488. .yyBleftimg{
  489. width: 45rpx;
  490. height: 35rpx;
  491. margin-top: 2rpx;
  492. }
  493. .yyBleft{
  494. display: flex;
  495. align-items: center;
  496. padding-right: 33rpx;
  497. }
  498. .newyyBox{
  499. display: flex;
  500. }
  501. .newyyBox .totalPriceBox{
  502. line-height: 45rpx;
  503. color: #666666;
  504. font-size: 24rpx;
  505. font-weight: 500;
  506. }
  507. .newyyBox .totalPrice{
  508. color: #FF0000;
  509. font-size: 32rpx;
  510. }
  511. .hejishul{
  512. color: #999999;
  513. font-size: 24rpx;
  514. font-weight: 400;
  515. }
  516. .yydetailBox{
  517. position: fixed;
  518. bottom: 0;
  519. left: 0;
  520. height: 100vh;
  521. width: 100vw;
  522. background: rgba(0, 0, 0, 0.4);
  523. z-index: 6;
  524. }
  525. .yydetailCont{
  526. width: 100vw;
  527. height: calc(50vh + 2rpx) ;
  528. overflow-y: scroll;
  529. background: #F0F0F0;
  530. position: absolute;
  531. left: 0;
  532. bottom: 119rpx;
  533. }
  534. .yyDetailTop{
  535. width: 750rpx;
  536. height: 90rpx;
  537. background: #FFFFFF;
  538. border-radius: 24rpx 24rpx 0px 0px;
  539. position: absolute;
  540. left: 0;
  541. bottom: calc( 50vh + 120rpx);
  542. display: flex;
  543. justify-content: space-between;
  544. }
  545. .yyDetailTopleft{
  546. color: #3C3C3C;
  547. font-size: 30rpx;
  548. line-height: 90rpx;
  549. padding-left: 24rpx;
  550. font-weight: 500;
  551. }
  552. .yyDetailTopRight{
  553. display: flex;
  554. padding-right: 24rpx;
  555. }
  556. .yydetailx{
  557. line-height: 90rpx;
  558. color: #999999;
  559. font-size: 30rpx;
  560. }
  561. .yydetalqk{
  562. width: 86rpx;
  563. height: 41rpx;
  564. background: #F4F5F7;
  565. border-radius: 21rpx;
  566. text-align: center;
  567. line-height: 41rpx;
  568. color: #666666;
  569. font-size: 24rpx;
  570. margin-top: 25rpx;
  571. margin-right: 38rpx;
  572. }
  573. .yydetailContLine{
  574. width: 702rpx;
  575. background: #FFFFFF;
  576. border-radius: 10rpx;
  577. margin-top: 20rpx;
  578. margin-left: 24rpx;
  579. padding: 24rpx 0px;
  580. }
  581. .yydlineName{
  582. color: #3C3C3C;
  583. font-size: 26rpx;
  584. padding-left: 24rpx;
  585. }
  586. .yydlineCommnt{
  587. color: #999999;
  588. font-size: 26rpx;
  589. padding-left: 22rpx;
  590. line-height: 30rpx;
  591. padding-top: 10rpx;
  592. }
  593. .yydPrice{
  594. padding-left: 22rpx;
  595. padding-top: 10rpx;
  596. color: #FF3B30;
  597. font-size: 32rpx;
  598. }
  599. </style>