bespeakDetail.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813
  1. <template>
  2. <view class="box">
  3. <view class="top" :style="{background:'#'+themeColor}">
  4. <view class="orderState">
  5. <image src="../../static/img/icon_order_def.png" mode="" style="width: 44rpx;height: 44rpx;"></image>
  6. <view class="SheetState" v-if="orderData.orderSheet.sheetState == 0">待确认</view>
  7. <view class="SheetState" v-if="orderData.orderSheet.sheetState == 1">预约中</view>
  8. <view class="SheetState" v-if="orderData.orderSheet.sheetState == 2">已到店</view>
  9. <view class="SheetState" v-if="orderData.orderSheet.sheetState == 3">已取消</view>
  10. </view>
  11. </view>
  12. <!-- 店铺信息 -->
  13. <view class="shopBox">
  14. <image src="../../static/img/icon_store.png" mode="" class="shopBoximg"></image>
  15. <view class="shopCont">
  16. <view class="shopName">{{orderData.shopInfo.shopName}}</view>
  17. <view class="Address">{{orderData.shopInfo.province}}{{orderData.shopInfo.city}}{{orderData.shopInfo.area}}{{orderData.shopInfo.address}}</view>
  18. </view>
  19. <view class="shopRightBox" @click="map">
  20. <image src="../../static/img/icon_ditu.png" mode="" class="shopRightImg"></image>
  21. <view class="shopRihgtTxt">地图</view>
  22. </view>
  23. <view class="shopsx"></view>
  24. <view class="shopRightBox" @click="call">
  25. <image src="../../static/img/icon_phone.png" mode="" class="shopRightImg"></image>
  26. <view class="shopRihgtTxt">电话</view>
  27. </view>
  28. </view>
  29. <!-- 订单信息 -->
  30. <view class="information">
  31. <view class="detailedTitle">基本信息</view>
  32. <view class="informationLine">
  33. <view class="informationTxt">车牌号:</view>
  34. <view class="informationNum">{{orderData.orderSheet.plateNumber}}</view>
  35. </view>
  36. <view class="informationLine">
  37. <view class="informationTxt">手机号:</view>
  38. <view class="informationNum">{{orderData.orderSheet.mobilePhone}}</view>
  39. </view>
  40. <view class="informationLine">
  41. <view class="informationTxt">预约时间:</view>
  42. <view class="informationNum">{{orderData.orderSheet.billDate}}</view>
  43. </view>
  44. <view class="informationLine">
  45. <view class="informationTxt">单号:</view>
  46. <view class="informationNum">{{orderData.orderSheet.code}}</view>
  47. </view>
  48. <view class="informationLine">
  49. <view class="informationTxt">备注:</view>
  50. <view class="informationNum">{{orderData.orderSheet.comment}}</view>
  51. </view>
  52. </view>
  53. <!-- 项目明细 -->
  54. <view class="detailedBox itemBox" v-if=" orderData.orderDetails.length!=0">
  55. <view class="detailedTitle">预约项目</view>
  56. <view class="detailedLineBox">
  57. <view class="detailedLine" v-for="(v,index) in orderData.orderDetails">
  58. <view class="detailedName">{{v.itemName}}</view>
  59. <span>¥{{v.amountMoney}}</span>
  60. </view>
  61. <view class="detailedLine" v-if=" orderData.orderDetails.length!=0">
  62. <view class="detailedName">预估总价</view>
  63. <span v-if="orderData.sumMoney>0">¥{{orderData.sumMoney}}</span>
  64. </view>
  65. <view class="content">温馨提示:该报价仅为参考价格,实际以门店为准(不同品牌和车型费用会不同)</view>
  66. </view>
  67. </view>
  68. <view class="bottom" v-if="(orderData.orderSheet.sheetState == 0)||(orderData.orderSheet.sheetState == 1)">
  69. <view class="cancel" @click="cancelBespeak" >取消预约</view>
  70. <view class="defer" :style="{border:'1rpx solid #'+themeColor,color:'#'+themeColor}" @click="cktime">延期</view>
  71. </view>
  72. <!-- 预约时间 -->
  73. <timeSelect ref="timeSelect" :timedata="timedata" @changeTime="changeTime"></timeSelect>
  74. </view>
  75. </template>
  76. <script>
  77. import timeSelect from '@/components/timeSelect/timeSelect.vue'
  78. export default {
  79. components: {
  80. timeSelect
  81. },
  82. data() {
  83. return {
  84. location: '',
  85. id: '',
  86. orderData: '',
  87. timedata:'',
  88. billDate:'',
  89. themeColor:'',
  90. }
  91. },
  92. onLoad(opt) {
  93. this.id = opt.id
  94. this.themeColor = uni.getStorageSync("themeColor");
  95. if (this.id) {
  96. this.getData()
  97. }
  98. },
  99. methods: {
  100. changeTime(data){
  101. console.log(data)
  102. this.billDate=data
  103. this.upTime();
  104. },
  105. cktime(){
  106. this.$refs.timeSelect.open();
  107. },
  108. upTime() {
  109. uni.showLoading({
  110. title: '加载中'
  111. })
  112. var that = this
  113. this.$http('openreservation/carOwner/updateTimeOfAppointment', {
  114. id: this.id,
  115. shopId: this.orderData.shopInfo.id,
  116. billDate:this.billDate
  117. }, 'POST').then(res => {
  118. uni.hideLoading();
  119. // var list = res.data.Items
  120. var list = res.data
  121. console.log("result+=",res.data);
  122. uni.showToast({
  123. title: '延期成功',
  124. icon: 'none',
  125. duration: 2000
  126. });
  127. setTimeout(function() {
  128. that.getData();
  129. }, 1000);
  130. })
  131. },
  132. cancelBespeak() {
  133. uni.showLoading({
  134. title: '加载中'
  135. })
  136. var that = this
  137. this.$http('openreservation/carOwner/updateState', {
  138. id: this.id,
  139. shopId: this.orderData.shopInfo.id,
  140. sheetState:3
  141. }, 'POST').then(res => {
  142. uni.hideLoading();
  143. // var list = res.data.Items
  144. var list = res.data
  145. uni.showToast({
  146. title: '取消成功',
  147. icon: 'none',
  148. duration: 2000
  149. });
  150. setTimeout(function() {
  151. that.getData();
  152. }, 1000);
  153. })
  154. },
  155. map() {
  156. console.log("打开地图")
  157. var that = this;
  158. if (!that.orderData.shopInfo.lat || !that.orderData.shopInfo.lng) {
  159. uni.showToast({
  160. title: '该店铺未设置定位',
  161. icon: 'none',
  162. duration: 3000
  163. });
  164. } else {
  165. uni.openLocation({
  166. latitude: Number(that.orderData.shopInfo.lat),
  167. longitude: Number(that.orderData.shopInfo.lng),
  168. name: that.orderData.shopInfo.shopName,
  169. address: that.orderData.shopInfo.province+that.orderData.shopInfo.city+that.orderData.shopInfo.area+that.orderData.shopInfo.address,
  170. success: function() {
  171. console.log('success');
  172. },
  173. fail(err) {
  174. console.log(err)
  175. }
  176. });
  177. }
  178. },
  179. call() {
  180. uni.makePhoneCall({
  181. phoneNumber: this.orderData.orderSheet.mobilePhone
  182. });
  183. },
  184. getData() {
  185. uni.showLoading({
  186. title: '加载中'
  187. });
  188. this.$http('openreservation/orderSheetDetails', {
  189. // lat: this.location.lat,
  190. // lng: this.location.lng,
  191. id: this.id,
  192. }, 'GET').then(res => {
  193. uni.hideLoading();
  194. this.orderData = res.data;
  195. })
  196. },
  197. goback() {
  198. uni.navigateBack({})
  199. },
  200. },
  201. onPullDownRefresh() {
  202. this.getData()
  203. setTimeout(function() {
  204. uni.stopPullDownRefresh();
  205. }, 1000);
  206. },
  207. }
  208. </script>
  209. <style scoped>
  210. .box {
  211. min-height: 100vh;
  212. background: #F4F5F7;
  213. }
  214. .top {
  215. height: 190rpx;
  216. background-color: #FF0000;
  217. }
  218. .orderState {
  219. display: flex;
  220. justify-content: center;
  221. align-items: center;
  222. padding-top: 40rpx;
  223. }
  224. .SheetState {
  225. display: flex;
  226. justify-content: center;
  227. font-size: 36rpx;
  228. font-weight: 500;
  229. color: #FFFFFF;
  230. margin-left: 15rpx;
  231. }
  232. .timeEditImg {
  233. width: 25rpx;
  234. height: 25rpx;
  235. padding-left: 20rpx;
  236. }
  237. .shopBoximg {
  238. width: 40rpx;
  239. height: 40rpx;
  240. }
  241. .shopRightImg {
  242. width: 44rpx;
  243. height: 45rpx;
  244. }
  245. .shopsx {
  246. width: 1px;
  247. height: 50rpx;
  248. background: #EEEEEE;
  249. margin-top: 30rpx;
  250. margin-left: 28rpx;
  251. }
  252. .shopBox {
  253. display: flex;
  254. padding: 30rpx 20rpx;
  255. margin: 0rpx 24rpx;
  256. margin-top: -60rpx;
  257. background-color: #FFFFFF;
  258. border-radius: 10rpx;
  259. }
  260. .shopCont {
  261. width: 405rpx;
  262. padding-left: 20rpx;
  263. }
  264. .shopName {
  265. font-size: 30rpx;
  266. font-weight: bold;
  267. color: #3C3C3C;
  268. line-height: 45rpx;
  269. }
  270. .Address {
  271. color: #999999;
  272. font-size: 24rpx;
  273. margin-top: 10rpx;
  274. }
  275. .shopRihgtTxt {
  276. color: #999999;
  277. font-size: 24rpx;
  278. }
  279. .shopRightBox {
  280. padding-left: 28rpx;
  281. }
  282. .peopleCont {
  283. font-size: 28rpx;
  284. color: #3C3C3C;
  285. padding-left: 20rpx;
  286. }
  287. .people {
  288. display: flex;
  289. padding-left: 20rpx;
  290. padding-top: 30rpx;
  291. padding-bottom: 36rpx;
  292. }
  293. .PlateNumberBox {
  294. display: flex;
  295. padding-left: 20rpx;
  296. padding-bottom: 30rpx;
  297. }
  298. .PlateNumbercx {
  299. font-size: 28rpx;
  300. color: #3C3C3C;
  301. padding-left: 20rpx;
  302. }
  303. .PlateNumber {
  304. width: 130rpx;
  305. height: 32rpx;
  306. border-radius: 4rpx;
  307. border: 1px solid #F19D01;
  308. line-height: 32rpx;
  309. text-align: center;
  310. font-size: 22rpx;
  311. color: #F19D01;
  312. margin-left: 26rpx;
  313. }
  314. .PlateNumberBoxTop {
  315. display: flex;
  316. }
  317. .CarModel {
  318. font-size: 26rpx;
  319. color: #999999;
  320. padding-left: 20rpx;
  321. padding-top: 6rpx;
  322. padding-right: 20rpx;
  323. padding-bottom: 15rpx;
  324. width: 600rpx;
  325. }
  326. .detailedBox {
  327. background: #FFFFFF;
  328. border-radius: 10px;
  329. margin: 20rpx 24rpx;
  330. padding-bottom: 20rpx;
  331. }
  332. .itemBox {
  333. margin-top: 20rpx;
  334. }
  335. .carMes {
  336. padding: 23rpx 20rpx;
  337. display: flex;
  338. align-items: center;
  339. justify-content: flex-start;
  340. border-bottom: 1rpx solid #EEEEEE;
  341. }
  342. .plate {
  343. font-size: 30rpx;
  344. color: #3C3C3C;
  345. font-weight: bold;
  346. margin-right: 20rpx;
  347. }
  348. .mileage {
  349. font-size: 24rpx;
  350. color: #F19D01;
  351. padding: 0rpx 10rpx;
  352. border: 1rpx solid #F19D01;
  353. border-radius: 4rpx;
  354. height: 36rpx;
  355. }
  356. .detailedTitle {
  357. padding: 23rpx 20rpx;
  358. display: flex;
  359. text-align: center;
  360. align-content: flex-start;
  361. border-bottom: 1rpx solid #EEEEEE;
  362. font-size: 30rpx;
  363. font-weight: bold;
  364. color: #3C3C3C;
  365. }
  366. .detailedLine {
  367. display: flex;
  368. padding: 20rpx 20rpx 0rpx;
  369. justify-content: space-between;
  370. }
  371. .detailedImg {
  372. width: 120rpx;
  373. height: 120rpx;
  374. border-radius: 10rpx;
  375. }
  376. .detailedName {
  377. font-size: 26rpx;
  378. color: #3C3C3C;
  379. }
  380. span{
  381. font-size: 26rpx;
  382. color: #999999;
  383. }
  384. .goodscost {
  385. width: 702rpx;
  386. background: #FFFFFF;
  387. border-radius: 10px;
  388. margin-left: 24rpx;
  389. margin-top: 20rpx;
  390. padding: 15rpx 0;
  391. }
  392. .goodscostLine {
  393. display: flex;
  394. justify-content: space-between;
  395. font-size: 28rpx;
  396. padding: 20rpx 20rpx;
  397. color: #666666;
  398. }
  399. .goodsCostNum {
  400. color: #3C3C3C;
  401. }
  402. .information {
  403. width: 702rpx;
  404. background: #FFFFFF;
  405. border-radius: 10px;
  406. margin-left: 24rpx;
  407. margin-top: 20rpx;
  408. padding: 0rpx 0 15rpx 0;
  409. }
  410. .informationLine {
  411. display: flex;
  412. font-size: 26rpx;
  413. padding: 15rpx 20rpx;
  414. }
  415. .informationTxt {
  416. width: 190rpx;
  417. color: #999999;
  418. }
  419. .informationNum {
  420. color: #333333;
  421. width: 524rpx;
  422. }
  423. .copyBtn {
  424. width: 86rpx;
  425. height: 40rpx;
  426. background: #F4F5F7;
  427. border-radius: 20rpx;
  428. font-size: 24rpx;
  429. color: #333333;
  430. text-align: center;
  431. line-height: 40rpx;
  432. margin-left: 20rpx;
  433. }
  434. .orderBottom {
  435. width: 750rpx;
  436. height: 98rpx;
  437. background: #FFFFFF;
  438. position: fixed;
  439. left: 0;
  440. bottom: 0;
  441. display: flex;
  442. justify-content: flex-end;
  443. }
  444. .cancelBtn {
  445. width: 150rpx;
  446. height: 56rpx;
  447. border-radius: 36rpx;
  448. border: 2rpx solid #DDDDDD;
  449. text-align: center;
  450. line-height: 56rpx;
  451. font-size: 28rpx;
  452. color: #3C3C3C;
  453. margin-top: 21rpx;
  454. margin-right: 16rpx;
  455. margin-left: 20rpx;
  456. }
  457. .payBtn {
  458. width: 150rpx;
  459. height: 56rpx;
  460. border-radius: 36rpx;
  461. border: 2rpx solid #FF4F00;
  462. text-align: center;
  463. line-height: 56rpx;
  464. font-size: 28rpx;
  465. color: #FF4F00;
  466. margin-top: 21rpx;
  467. margin-right: 16rpx;
  468. margin-left: 20rpx;
  469. }
  470. .timeBox2 {
  471. width: 100vw;
  472. height: 100vh;
  473. background: rgba(0, 0, 0, 0.5);
  474. position: fixed;
  475. top: 0;
  476. left: 0;
  477. }
  478. .timeLeftActive {
  479. background: #FFFFFF;
  480. }
  481. .timeMain {
  482. width: 100vw;
  483. height: 70vh;
  484. margin-top: 30vh;
  485. background: #FFFFFF;
  486. border-radius: 24rpx 24rpx 0px 0px;
  487. }
  488. .timesfNo {
  489. background: #F5F5F5;
  490. }
  491. .timesfActive {
  492. background: #FF4F00;
  493. }
  494. .timesfActive .timeSfNum {
  495. color: #FFFFFF;
  496. }
  497. .timesfActive .timeyy {
  498. color: #FFFFFF;
  499. }
  500. .timeTop {
  501. display: flex;
  502. line-height: 90rpx;
  503. padding-left: 24rpx;
  504. padding-right: 24rpx;
  505. justify-content: space-between;
  506. }
  507. .timeTopTitle {
  508. font-size: 30rpx;
  509. font-family: PingFangSC-Medium, PingFang SC;
  510. font-weight: 600;
  511. color: #3C3C3C;
  512. }
  513. .close {
  514. color: #999999;
  515. font-size: 30rpx;
  516. padding-left: 30rpx;
  517. }
  518. .timeCont {
  519. height: calc(70vh - 210rpx);
  520. }
  521. .timeSv {
  522. height: calc(70vh - 210rpx);
  523. }
  524. .timeLeft2 {
  525. width: 162rpx;
  526. background: #F4F5F7;
  527. border-top: 1px soid #F4F5F7;
  528. border-right: 1px soid #F4F5F7;
  529. }
  530. .timeRight2 {
  531. width: 588rpx;
  532. }
  533. .timesf {
  534. width: 165rpx;
  535. height: 98rpx;
  536. border-radius: 7rpx;
  537. border: 2rpx solid #EEEEEE;
  538. text-align: center;
  539. margin-left: 20rpx;
  540. margin-bottom: 24rpx;
  541. }
  542. .timeBottom {
  543. width: 750rpx;
  544. height: 120rpx;
  545. background: #FFFFFF;
  546. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  547. display: flex;
  548. align-items: center;
  549. }
  550. .timerightBox {
  551. display: flex;
  552. flex-wrap: wrap;
  553. }
  554. .timeCont {
  555. display: flex;
  556. }
  557. .timeSfNum {
  558. color: #666666;
  559. font-size: 28rpx;
  560. padding-top: 15rpx;
  561. }
  562. .timeyy {
  563. font-size: 24rpx;
  564. color: #999999;
  565. }
  566. .timecomplete {
  567. width: 690rpx;
  568. height: 74rpx;
  569. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  570. border-radius: 37rpx;
  571. line-height: 74rpx;
  572. text-align: center;
  573. font-size: 30rpx;
  574. color: #FFFFFF;
  575. margin-left: 30rpx;
  576. }
  577. .timeleftLine {
  578. font-size: 30rpx;
  579. color: #999999;
  580. text-align: center;
  581. padding: 28rpx 10rpx;
  582. border-bottom: 1px solid #EEEEEE;
  583. }
  584. .yuyueBox {
  585. background: #FFFFFF;
  586. border-radius: 10rpx;
  587. margin-left: 24rpx;
  588. margin-right: 24rpx;
  589. }
  590. .yuyueTime {
  591. display: flex;
  592. padding-left: 20rpx;
  593. padding-top: 30rpx;
  594. padding-bottom: 36rpx;
  595. align-items: center;
  596. }
  597. .yuyueState {
  598. display: flex;
  599. padding-left: 20rpx;
  600. padding-top: 30rpx;
  601. padding-bottom: 36rpx;
  602. }
  603. .maBox {
  604. display: flex;
  605. justify-content: space-between;
  606. padding: 24rpx 20rpx;
  607. }
  608. .querenMa {
  609. margin: 20rpx 0;
  610. padding-bottom: 30rpx;
  611. }
  612. .maBoximg {
  613. width: 308rpx;
  614. height: 308rpx;
  615. margin: 30rpx 197rpx;
  616. }
  617. .rightShou {
  618. display: flex;
  619. justify-content: flex-start;
  620. align-items: center;
  621. }
  622. .content{
  623. background-color: #F4F5F7;
  624. border-radius: 10rpx;
  625. padding: 16rpx;
  626. color: #999999;
  627. font-size: 24rpx;
  628. margin: 20rpx;
  629. }
  630. .bottom {
  631. display: flex;
  632. justify-content: flex-end;
  633. padding: 20rpx;
  634. background-color: #FFFFFF;
  635. align-items: center;
  636. height: 98rpx;
  637. width: 100vw;
  638. position: fixed;
  639. bottom: 0rpx;
  640. padding-bottom: constant(safe-area-inset-bottom);
  641. padding-bottom: env(safe-area-inset-bottom);
  642. }
  643. .cancel{
  644. color: #3C3C3C;
  645. font-size: 28rpx;
  646. width: 150rpx;
  647. height: 56rpx;
  648. border-radius: 36rpx;
  649. border: 1rpx solid #DDDDDD;
  650. text-align: center;
  651. line-height: 56rpx;
  652. margin-right: 40rpx;
  653. }
  654. .defer {
  655. color: #D53533;
  656. font-size: 28rpx;
  657. width: 150rpx;
  658. height: 56rpx;
  659. border-radius: 36rpx;
  660. border: 1rpx solid #D53533;
  661. text-align: center;
  662. line-height: 56rpx;
  663. margin-right: 40rpx;
  664. }
  665. </style>