onlineBooking.vue 14 KB

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