historyDetail.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707
  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. </view>
  75. </template>
  76. <script>
  77. export default {
  78. data() {
  79. return {
  80. location: '',
  81. id: '',
  82. orderData: '',
  83. themeColor:'',
  84. }
  85. },
  86. onLoad(opt) {
  87. this.id = opt.id
  88. this.themeColor = uni.getStorageSync("themeColor");
  89. this.getData()
  90. },
  91. methods: {
  92. map() {
  93. console.log("打开地图")
  94. var that = this;
  95. if (!that.orderData.billsheet.lat || !that.orderData.billsheet.lng) {
  96. uni.showToast({
  97. title: '该店铺未设置定位',
  98. icon: 'none',
  99. duration: 3000
  100. });
  101. } else {
  102. uni.openLocation({
  103. latitude: Number(that.orderData.billsheet.lat),
  104. longitude: Number(that.orderData.billsheet.lng),
  105. name: that.orderData.billsheet.ShopName,
  106. address: that.orderData.billsheet.Address,
  107. success: function() {
  108. console.log('success');
  109. },
  110. fail(err) {
  111. console.log(err)
  112. }
  113. });
  114. }
  115. },
  116. call() {
  117. uni.makePhoneCall({
  118. phoneNumber: this.orderData.billsheet.MobilePhone
  119. });
  120. },
  121. getData() {
  122. uni.showLoading({
  123. title: '加载中'
  124. });
  125. this.$http('openweiXinCardInfoController/queryConsumptionDetail', {
  126. // lat: this.location.lat,
  127. // lng: this.location.lng,
  128. id: this.id,
  129. }, 'POST').then(res => {
  130. uni.hideLoading();
  131. this.orderData = res.data;
  132. })
  133. },
  134. goback() {
  135. uni.navigateBack({})
  136. },
  137. },
  138. onPullDownRefresh() {
  139. this.getData()
  140. setTimeout(function() {
  141. uni.stopPullDownRefresh();
  142. }, 1000);
  143. },
  144. }
  145. </script>
  146. <style scoped>
  147. .box {
  148. min-height: 100vh;
  149. background: #F4F5F7;
  150. }
  151. .top {
  152. height: 190rpx;
  153. background: #FF0000;
  154. }
  155. .orderState {
  156. display: flex;
  157. justify-content: center;
  158. align-items: center;
  159. padding-top: 40rpx;
  160. }
  161. .SheetState {
  162. display: flex;
  163. justify-content: center;
  164. font-size: 36rpx;
  165. font-weight: 500;
  166. color: #FFFFFF;
  167. margin-left: 15rpx;
  168. }
  169. .timeEditImg {
  170. width: 25rpx;
  171. height: 25rpx;
  172. padding-left: 20rpx;
  173. }
  174. .shopBoximg {
  175. width: 40rpx;
  176. height: 40rpx;
  177. }
  178. .shopRightImg {
  179. width: 44rpx;
  180. height: 45rpx;
  181. }
  182. .shopsx {
  183. width: 1px;
  184. height: 50rpx;
  185. background: #EEEEEE;
  186. margin-top: 30rpx;
  187. margin-left: 28rpx;
  188. }
  189. .shopBox {
  190. display: flex;
  191. padding: 30rpx 20rpx;
  192. margin: 0rpx 24rpx;
  193. margin-top: -60rpx;
  194. background-color: #FFFFFF;
  195. border-radius: 10rpx;
  196. }
  197. .shopCont {
  198. width: 405rpx;
  199. padding-left: 20rpx;
  200. }
  201. .shopName {
  202. font-size: 30rpx;
  203. font-weight: bold;
  204. color: #3C3C3C;
  205. line-height: 45rpx;
  206. }
  207. .Address {
  208. color: #999999;
  209. font-size: 24rpx;
  210. margin-top: 10rpx;
  211. }
  212. .shopRihgtTxt {
  213. color: #999999;
  214. font-size: 24rpx;
  215. }
  216. .shopRightBox {
  217. padding-left: 28rpx;
  218. }
  219. .peopleCont {
  220. font-size: 28rpx;
  221. color: #3C3C3C;
  222. padding-left: 20rpx;
  223. }
  224. .people {
  225. display: flex;
  226. padding-left: 20rpx;
  227. padding-top: 30rpx;
  228. padding-bottom: 36rpx;
  229. }
  230. .PlateNumberBox {
  231. display: flex;
  232. padding-left: 20rpx;
  233. padding-bottom: 30rpx;
  234. }
  235. .PlateNumbercx {
  236. font-size: 28rpx;
  237. color: #3C3C3C;
  238. padding-left: 20rpx;
  239. }
  240. .PlateNumber {
  241. width: 130rpx;
  242. height: 32rpx;
  243. border-radius: 4rpx;
  244. border: 1px solid #F19D01;
  245. line-height: 32rpx;
  246. text-align: center;
  247. font-size: 22rpx;
  248. color: #F19D01;
  249. margin-left: 26rpx;
  250. }
  251. .PlateNumberBoxTop {
  252. display: flex;
  253. }
  254. .CarModel {
  255. font-size: 26rpx;
  256. color: #999999;
  257. padding-left: 20rpx;
  258. padding-top: 6rpx;
  259. padding-right: 20rpx;
  260. padding-bottom: 15rpx;
  261. width: 600rpx;
  262. }
  263. .detailedBox {
  264. background: #FFFFFF;
  265. border-radius: 10px;
  266. margin: 20rpx 24rpx;
  267. padding-bottom: 20rpx;
  268. }
  269. .itemBox {
  270. margin-top: 20rpx;
  271. }
  272. .carMes {
  273. padding: 23rpx 20rpx;
  274. display: flex;
  275. align-items: center;
  276. justify-content: flex-start;
  277. border-bottom: 1rpx solid #EEEEEE;
  278. }
  279. .plate {
  280. font-size: 30rpx;
  281. color: #3C3C3C;
  282. font-weight: bold;
  283. margin-right: 20rpx;
  284. }
  285. .mileage {
  286. font-size: 24rpx;
  287. color: #F19D01;
  288. padding: 0rpx 10rpx;
  289. border: 1rpx solid #F19D01;
  290. border-radius: 4rpx;
  291. height: 36rpx;
  292. }
  293. .detailedTitle {
  294. padding: 23rpx 20rpx;
  295. display: flex;
  296. text-align: center;
  297. align-content: flex-start;
  298. border-bottom: 1rpx solid #EEEEEE;
  299. font-size: 30rpx;
  300. font-weight: bold;
  301. color: #3C3C3C;
  302. }
  303. .detailedLine {
  304. display: flex;
  305. padding: 20rpx 20rpx 0rpx;
  306. justify-content: space-between;
  307. }
  308. .detailedImg {
  309. width: 120rpx;
  310. height: 120rpx;
  311. border-radius: 10rpx;
  312. }
  313. .detailedName {
  314. font-size: 26rpx;
  315. color: #3C3C3C;
  316. }
  317. span{
  318. font-size: 26rpx;
  319. color: #999999;
  320. }
  321. .goodscost {
  322. width: 702rpx;
  323. background: #FFFFFF;
  324. border-radius: 10px;
  325. margin-left: 24rpx;
  326. margin-top: 20rpx;
  327. padding: 15rpx 0;
  328. }
  329. .goodscostLine {
  330. display: flex;
  331. justify-content: space-between;
  332. font-size: 28rpx;
  333. padding: 20rpx 20rpx;
  334. color: #666666;
  335. }
  336. .goodsCostNum {
  337. color: #3C3C3C;
  338. }
  339. .information {
  340. width: 702rpx;
  341. background: #FFFFFF;
  342. border-radius: 10px;
  343. margin-left: 24rpx;
  344. margin-top: 20rpx;
  345. padding: 0rpx 0 15rpx 0;
  346. }
  347. .informationLine {
  348. display: flex;
  349. font-size: 26rpx;
  350. padding: 15rpx 20rpx;
  351. }
  352. .informationTxt {
  353. width: 190rpx;
  354. color: #999999;
  355. }
  356. .informationNum {
  357. color: #333333;
  358. }
  359. .copyBtn {
  360. width: 86rpx;
  361. height: 40rpx;
  362. background: #F4F5F7;
  363. border-radius: 20rpx;
  364. font-size: 24rpx;
  365. color: #333333;
  366. text-align: center;
  367. line-height: 40rpx;
  368. margin-left: 20rpx;
  369. }
  370. .orderBottom {
  371. width: 750rpx;
  372. height: 98rpx;
  373. background: #FFFFFF;
  374. position: fixed;
  375. left: 0;
  376. bottom: 0;
  377. display: flex;
  378. justify-content: flex-end;
  379. }
  380. .cancelBtn {
  381. width: 150rpx;
  382. height: 56rpx;
  383. border-radius: 36rpx;
  384. border: 2rpx solid #DDDDDD;
  385. text-align: center;
  386. line-height: 56rpx;
  387. font-size: 28rpx;
  388. color: #3C3C3C;
  389. margin-top: 21rpx;
  390. margin-right: 16rpx;
  391. margin-left: 20rpx;
  392. }
  393. .payBtn {
  394. width: 150rpx;
  395. height: 56rpx;
  396. border-radius: 36rpx;
  397. border: 2rpx solid #FF4F00;
  398. text-align: center;
  399. line-height: 56rpx;
  400. font-size: 28rpx;
  401. color: #FF4F00;
  402. margin-top: 21rpx;
  403. margin-right: 16rpx;
  404. margin-left: 20rpx;
  405. }
  406. .timeBox2 {
  407. width: 100vw;
  408. height: 100vh;
  409. background: rgba(0, 0, 0, 0.5);
  410. position: fixed;
  411. top: 0;
  412. left: 0;
  413. }
  414. .timeLeftActive {
  415. background: #FFFFFF;
  416. }
  417. .timeMain {
  418. width: 100vw;
  419. height: 70vh;
  420. margin-top: 30vh;
  421. background: #FFFFFF;
  422. border-radius: 24rpx 24rpx 0px 0px;
  423. }
  424. .timesfNo {
  425. background: #F5F5F5;
  426. }
  427. .timesfActive {
  428. background: #FF4F00;
  429. }
  430. .timesfActive .timeSfNum {
  431. color: #FFFFFF;
  432. }
  433. .timesfActive .timeyy {
  434. color: #FFFFFF;
  435. }
  436. .topBox {
  437. padding: 20rpx 24rpx;
  438. }
  439. .timeTop {
  440. display: flex;
  441. line-height: 90rpx;
  442. padding-left: 24rpx;
  443. padding-right: 24rpx;
  444. justify-content: space-between;
  445. }
  446. .timeTopTitle {
  447. font-size: 30rpx;
  448. font-family: PingFangSC-Medium, PingFang SC;
  449. font-weight: 600;
  450. color: #3C3C3C;
  451. }
  452. .close {
  453. color: #999999;
  454. font-size: 30rpx;
  455. padding-left: 30rpx;
  456. }
  457. .timeCont {
  458. height: calc(70vh - 210rpx);
  459. }
  460. .timeSv {
  461. height: calc(70vh - 210rpx);
  462. }
  463. .timeLeft2 {
  464. width: 162rpx;
  465. background: #F4F5F7;
  466. border-top: 1px soid #F4F5F7;
  467. border-right: 1px soid #F4F5F7;
  468. }
  469. .timeRight2 {
  470. width: 588rpx;
  471. }
  472. .timesf {
  473. width: 165rpx;
  474. height: 98rpx;
  475. border-radius: 7rpx;
  476. border: 2rpx solid #EEEEEE;
  477. text-align: center;
  478. margin-left: 20rpx;
  479. margin-bottom: 24rpx;
  480. }
  481. .timeBottom {
  482. width: 750rpx;
  483. height: 120rpx;
  484. background: #FFFFFF;
  485. box-shadow: 0px -2px 20rpx 0px rgba(153, 153, 153, 0.2);
  486. display: flex;
  487. align-items: center;
  488. }
  489. .timerightBox {
  490. display: flex;
  491. flex-wrap: wrap;
  492. }
  493. .timeCont {
  494. display: flex;
  495. }
  496. .timeSfNum {
  497. color: #666666;
  498. font-size: 28rpx;
  499. padding-top: 15rpx;
  500. }
  501. .timeyy {
  502. font-size: 24rpx;
  503. color: #999999;
  504. }
  505. .timecomplete {
  506. width: 690rpx;
  507. height: 74rpx;
  508. background: linear-gradient(124deg, #FF8700 0%, #FF4F00 100%);
  509. border-radius: 37rpx;
  510. line-height: 74rpx;
  511. text-align: center;
  512. font-size: 30rpx;
  513. color: #FFFFFF;
  514. margin-left: 30rpx;
  515. }
  516. .timeleftLine {
  517. font-size: 30rpx;
  518. color: #999999;
  519. text-align: center;
  520. padding: 28rpx 10rpx;
  521. border-bottom: 1px solid #EEEEEE;
  522. }
  523. .yuyueBox {
  524. background: #FFFFFF;
  525. border-radius: 10rpx;
  526. margin-left: 24rpx;
  527. margin-right: 24rpx;
  528. }
  529. .yuyueTime {
  530. display: flex;
  531. padding-left: 20rpx;
  532. padding-top: 30rpx;
  533. padding-bottom: 36rpx;
  534. align-items: center;
  535. }
  536. .yuyueState {
  537. display: flex;
  538. padding-left: 20rpx;
  539. padding-top: 30rpx;
  540. padding-bottom: 36rpx;
  541. }
  542. .maBox {
  543. display: flex;
  544. justify-content: space-between;
  545. padding: 24rpx 20rpx;
  546. }
  547. .querenMa {
  548. margin: 20rpx 0;
  549. padding-bottom: 30rpx;
  550. }
  551. .maBoximg {
  552. width: 308rpx;
  553. height: 308rpx;
  554. margin: 30rpx 197rpx;
  555. }
  556. .rightShou {
  557. display: flex;
  558. justify-content: flex-start;
  559. align-items: center;
  560. }
  561. </style>