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