orderDetail.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. <template>
  2. <view class="content padding-b-30">
  3. <view class="row b-b b-t">
  4. <text class="order-status"
  5. @click="item.delivery_type == 'express'?towuliu(item):''">{{ item._status ? item._status._msg : '' }}</text>
  6. </view>
  7. <!-- 快递信息 -->
  8. <view class="express-box" @click="expressCheck(item)" v-if="item.delivery_id != null ">
  9. <view v-if='item.delivery_id != null' style="width: 100%;padding: 10rpx 20rpx;background: #FFFFFF;">
  10. <view class="express-frame">
  11. <view>
  12. <view style="display: flex;">
  13. <text class="express-text">快递名:</text>
  14. {{ item.delivery_name }}
  15. </view>
  16. <view style="display: flex;">
  17. <text class="express-text">快递单号:</text>
  18. {{ item.delivery_id }}
  19. </view>
  20. </view>
  21. <text class="iconfont iconenter" style="color: #CCCCCC;"></text>
  22. </view>
  23. </view>
  24. </view>
  25. <view class="address-box position-relative">
  26. <view class="address-top flex">
  27. <view class="title">{{ item.real_name }}</view>
  28. <view class="phone">{{ item.user_phone }}</view>
  29. </view>
  30. <view class="addrdss-detail">{{ item.user_address }}</view>
  31. <image class="a-bg" :src="addressImg"></image>
  32. </view>
  33. <view class="order-item">
  34. <view class="goods-box-single" @click="navTo('/pages/product/product?id='+goodsItem.product_id+'&shopId='+goodsItem.store_id)" v-for="(goodsItem, goodsIndex) in item.cartInfo" :key="goodsIndex">
  35. <image class="goods-img" :src="goodsItem.productInfo.image" mode="aspectFill"></image>
  36. <view class="right position-relative">
  37. <view class="flex">
  38. <text class="title">{{ goodsItem.productInfo.store_name }}</text>
  39. <view class="title-right">
  40. <view class="price">{{ goodsItem.productInfo.price }}</view>
  41. <view class="attr-box">
  42. {{ goodsItem.attrInfo ? goodsItem.attrInfo.suk : '' }} x
  43. {{ goodsItem.cart_num + '' + (goodsItem.productInfo.unit_name ||'') }}
  44. </view>
  45. <!-- <view>
  46. <view v-if="status._type == 3">
  47. <view @click="evaluate(goodsItem)" class="yesevaluate"
  48. v-if="goodsItem.is_reply > 0"><text>已评价</text></view>
  49. <view @click="evaluate(goodsItem)" class="evaluate" v-if="goodsItem.is_reply < 1">
  50. <text>去评价</text>
  51. </view>
  52. </view>
  53. </view> -->
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="row b-b flex">
  60. <text class="tit">订单总价</text>
  61. <view class="input">¥{{ payAllMoney }}</view>
  62. </view>
  63. <view class="row b-b flex" v-if="vipMoney > 0">
  64. <text class="tit">vip优惠</text>
  65. <view class="input">-¥{{ vipMoney }}</view>
  66. </view>
  67. <view class="row b-b flex">
  68. <text class="tit">邮费</text>
  69. <view class="input">{{ item.pay_postage > 0 ? '¥' + item.pay_postage : '免邮费' }}</view>
  70. </view>
  71. <template v-if="item.is_battery == 1 || item.is_booster == 1">
  72. <view class="row b-b flex" >
  73. <text class="tit">押金</text>
  74. <view class="input">{{ item.deposit }}</view>
  75. </view>
  76. <view class="row b-b flex" >
  77. <text class="tit">骑行券抵扣</text>
  78. <view class="input">{{ item.use_certificate }}</view>
  79. </view>
  80. </template>
  81. <view class="row b-b flex" v-if="item.coupon_id > 0">
  82. <text class="tit">优惠券</text>
  83. <view class="input">-¥{{ item.coupon_price }}</view>
  84. </view>
  85. <view class="row b-b flex" v-if="item.use_integral > 0">
  86. <text class="tit">积分抵扣</text>
  87. <view class="input">-¥{{ item.use_integral }}</view>
  88. </view>
  89. <view class="row b-b flex">
  90. <text class="tit ">实付</text>
  91. <view class="input payColor">¥{{ item.pay_price }}</view>
  92. </view>
  93. <view class="orderDetialBox">
  94. <view class="f-header m-t">
  95. <view class="f-left-icon"></view>
  96. <view class="tit-box"><text class="tit">订单信息</text></view>
  97. </view>
  98. <view class="item flex">
  99. <view class="title-left flex">
  100. <text class="title">订单编号:</text>
  101. <view class="text">{{ item.order_id }}</view>
  102. </view>
  103. <view class="buttom-right" @click="copyOrderId(item.order_id)">复制单号</view>
  104. </view>
  105. <view class="item flex">
  106. <view class="title-left flex">
  107. <text class="title">下单时间:</text>
  108. <view class="text">{{ item._add_time }}</view>
  109. </view>
  110. </view>
  111. <view class="item flex">
  112. <view class="title-left flex">
  113. <text class="title">订单类型:</text>
  114. <view class="text">{{ item | orderType }}</view>
  115. </view>
  116. </view>
  117. <view class="item flex">
  118. <view class="title-left flex">
  119. <text class="title">订单状态:</text>
  120. <view class="text">{{ item._status._title || '' }}</view>
  121. </view>
  122. </view>
  123. <view class="item flex">
  124. <view class="title-left flex">
  125. <text class="title">支付方式:</text>
  126. <view class="text">{{ item._status._payType||"" }}</view>
  127. </view>
  128. </view>
  129. </view>
  130. <view class="orderDetialBox" v-if="item.delivery_id">
  131. <view class="item flex">
  132. <view class="title-left flex">
  133. <text class="title">配送方式:</text>
  134. <view class="text">
  135. {{ item.delivery_type == 'express' ? '发货' : item.delivery_type == 'send' ? '送货' : '' }}
  136. </view>
  137. </view>
  138. </view>
  139. <view class="item flex">
  140. <view class="title-left flex">
  141. <text class="title" v-if="item.delivery_type == 'express'">快递公司:</text>
  142. <text class="title" v-if="item.delivery_type == 'send'">送货人员:</text>
  143. <view class="text">{{ item.delivery_name }}</view>
  144. </view>
  145. <view v-if="status._type != 1 && status._type != 0" class="buttom-right" @click="towuliu(item)">查看物流
  146. </view>
  147. </view>
  148. <view class="item flex">
  149. <view class="title-left flex">
  150. <text class="title" v-if="item.delivery_type == 'express'">快递单号:</text>
  151. <text class="title" v-if="item.delivery_type == 'send'">联系方式:</text>
  152. <view class="text">{{ item.delivery_id }}</view>
  153. </view>
  154. </view>
  155. </view>
  156. <view class="flex bottomBox">
  157. <view class="buttomBottom" @click="shopLi">
  158. 联系商家
  159. </view>
  160. <view class="buttomBottom bgYellow" @click="shopNext">前往商家</view>
  161. </view>
  162. </view>
  163. </template>
  164. <script>
  165. import {
  166. orderDetail
  167. } from '@/api/order.js';
  168. export default {
  169. filters: {
  170. orderType: function(item) {
  171. if (item.combination_id > 0) {
  172. return '拼团订单';
  173. } else if (item.seckill_id > 0) {
  174. return '秒杀订单';
  175. } else if (item.bargain_id > 0) {
  176. return '砍价订单';
  177. } else {
  178. return '普通订单';
  179. }
  180. }
  181. },
  182. data() {
  183. return {
  184. refund: '', //退款理由
  185. reason: '', //备注
  186. value: ['1', '2', '3', '4', '5', '6', '7', '8', 9, 10, 11, 12, 13],
  187. orderId: '',
  188. item: {
  189. _status: {}
  190. },
  191. status: [],
  192. vipMoney: 0, //vip优惠金额
  193. addressImg: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAu4AAAAFCAYAAAAaAWmiAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Rjk3RjkzMjM2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Rjk3RjkzMjQ2NzMxMTFFOUI4RkU4OEZGMDcxQzgzOEYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGOTdGOTMyMTY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGOTdGOTMyMjY3MzExMUU5QjhGRTg4RkYwNzFDODM4RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrEOZlQAAAiuSURBVHjazJp7bFvV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'
  194. };
  195. },
  196. onLoad(option) {
  197. this.orderId = option.id;
  198. this.loadOrder();
  199. },
  200. computed: {
  201. payAllMoney() {
  202. return this.vipMoney + +this.item.total_price;
  203. }
  204. },
  205. methods: {
  206. navTo(url){
  207. console.log(url);
  208. uni.navigateTo({
  209. url:url
  210. })
  211. },
  212. // 联系商家
  213. shopLi(phone) {
  214. uni.makePhoneCall({
  215. phoneNumber: this.item.system_store.phone //仅为示例
  216. });
  217. },
  218. // 前往商家
  219. shopNext(lat, long) {
  220. // 打开地图导航
  221. uni.openLocation({
  222. latitude: +this.item.system_store.latitude,
  223. longitude: +this.item.system_store.longitude,
  224. fail(e) {
  225. console.log(e);
  226. }
  227. })
  228. },
  229. // 跳转到查询快递页面
  230. expressCheck(item) {
  231. // uni.navigateTo({
  232. // url: '/pages/order/expressInfo?id=' + item.id
  233. // });
  234. },
  235. // 载入订单详细
  236. loadOrder() {
  237. let obj = this;
  238. orderDetail({}, obj.orderId).then(e => {
  239. obj.item = e.data;
  240. obj.item.cartInfo.forEach(e => {
  241. // 计算vip优惠金额
  242. obj.vipMoney += e.vip_truePrice;
  243. });
  244. this.status = e.data._status;
  245. console.log(e);
  246. });
  247. },
  248. // 查看快递单号
  249. towuliu(item) {
  250. let delivery_id = item.delivery_id;
  251. window.location.href = "https://m.kuaidi100.com/result.jsp?nu=" + delivery_id
  252. },
  253. //跳转到评价页面
  254. evaluate(e) {
  255. let unique = e.unique;
  256. let is_reply = e.is_reply;
  257. if (is_reply == 0) {
  258. uni.navigateTo({
  259. url: '/pages/order/evaluate?unique=' + unique
  260. });
  261. } else {
  262. uni.showToast({
  263. title: '已评价!',
  264. duration: 1500,
  265. icon: "none"
  266. });
  267. }
  268. },
  269. // 复制订单编号
  270. copyOrderId(text) {
  271. // #ifndef H5
  272. uni.setClipboardData({
  273. data: text,
  274. success: e => {
  275. uni.showToast({
  276. title: '复制成功',
  277. duration: 1500
  278. });
  279. }
  280. });
  281. // #endif
  282. // #ifdef H5
  283. // 获取需要复制的文字
  284. const copyStr = text;
  285. // 创建input标签存放需要复制的文字
  286. const oInput = document.createElement('input');
  287. // 把文字放进input中,供复制
  288. oInput.value = copyStr;
  289. // 添加文
  290. document.body.appendChild(oInput);
  291. // 选中创建的input
  292. oInput.select();
  293. // 执行复制方法, 该方法返回bool类型的结果,告诉我们是否复制成功
  294. const copyResult = document.execCommand('copy');
  295. // 操作中完成后 从Dom中删除创建的input
  296. document.body.removeChild(oInput);
  297. // 根据返回的复制结果 给用户不同的提示
  298. if (copyResult) {
  299. uni.showToast({
  300. title: '已复制到粘贴板',
  301. duration: 2000
  302. });
  303. } else {
  304. this.$api.msg('复制失败');
  305. }
  306. // #endif
  307. }
  308. }
  309. };
  310. </script>
  311. <style lang="scss">
  312. page {
  313. background: $page-color-base;
  314. }
  315. // 快递信息
  316. .express-box {
  317. margin-top: 20rpx;
  318. width: 100%;
  319. display: flex;
  320. align-items: center;
  321. justify-content: space-between;
  322. font-size: $font-base;
  323. font-weight: 500;
  324. .express-frame {
  325. display: flex;
  326. align-items: center;
  327. justify-content: space-between;
  328. width: 100%;
  329. height: 100rpx;
  330. }
  331. .express-text {
  332. font-weight: 600;
  333. margin-right: 20rpx;
  334. width: 140rpx;
  335. display: block;
  336. }
  337. }
  338. // 订单详细
  339. .orderDetialBox {
  340. margin-top: 20rpx;
  341. padding: 0 30rpx;
  342. background-color: #ffffff;
  343. font-size: $font-base;
  344. color: $font-color-base;
  345. .item {
  346. height: 80rpx;
  347. .text {
  348. padding-left: 10rpx;
  349. }
  350. .buttom-right {
  351. width: 180rpx;
  352. border-radius: 99rpx;
  353. padding: 10rpx;
  354. text-align: center;
  355. border: 1px solid $border-color-light;
  356. }
  357. }
  358. }
  359. // 地址信息
  360. .address-box {
  361. margin-top: 20rpx;
  362. padding: 30rpx;
  363. padding-bottom: 35rpx;
  364. background-color: #ffffff;
  365. line-height: 1;
  366. .address-top {
  367. margin-bottom: 30rpx;
  368. .title {
  369. font-size: $font-lg;
  370. color: $font-color-dark;
  371. }
  372. .phone {
  373. font-size: $font-base;
  374. color: $font-color-light;
  375. }
  376. }
  377. .addrdss-detail {
  378. font-size: $font-base;
  379. color: $font-color-base;
  380. }
  381. .a-bg {
  382. position: absolute;
  383. bottom: 0;
  384. left: 0;
  385. width: 100%;
  386. height: 5rpx;
  387. }
  388. }
  389. .row {
  390. display: flex;
  391. align-items: center;
  392. position: relative;
  393. padding: 0 30rpx;
  394. height: 80rpx;
  395. background: #fff;
  396. .order-status {
  397. font-size: $font-lg;
  398. color: $color-red;
  399. font-weight: 500;
  400. }
  401. .refund {
  402. font-size: 30rpx;
  403. color: $font-color-dark;
  404. }
  405. .noRefund {
  406. font-size: 30rpx;
  407. color: $font-color-light;
  408. }
  409. .tit {
  410. flex-shrink: 0;
  411. width: 200rpx;
  412. font-size: 30rpx;
  413. color: $font-color-dark;
  414. }
  415. .input {
  416. text-align: right;
  417. flex: 1;
  418. font-size: 30rpx;
  419. color: $font-color-dark;
  420. &.payColor {
  421. color: $color-red;
  422. }
  423. }
  424. .iconlocation {
  425. font-size: 36rpx;
  426. color: $font-color-light;
  427. }
  428. }
  429. .add-btn {
  430. display: flex;
  431. align-items: center;
  432. justify-content: center;
  433. width: 690rpx;
  434. height: 80rpx;
  435. margin: 60rpx auto;
  436. font-size: $font-lg;
  437. color: #fff;
  438. background-color: $base-color;
  439. border-radius: 10rpx;
  440. // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
  441. }
  442. /* 多条商品 */
  443. .order-item {
  444. display: flex;
  445. flex-direction: column;
  446. padding-left: 30rpx;
  447. background: #fff;
  448. margin-top: 20rpx;
  449. /* 单条商品 */
  450. .goods-box-single {
  451. display: flex;
  452. padding: 20rpx 0;
  453. .goods-img {
  454. display: block;
  455. width: 120rpx;
  456. height: 120rpx;
  457. }
  458. .right {
  459. flex: 1;
  460. display: flex;
  461. flex-direction: column;
  462. padding: 0 30rpx 0 24rpx;
  463. overflow: hidden;
  464. height: 100%;
  465. .title {
  466. align-self: flex-start;
  467. font-size: $font-base + 2rpx;
  468. color: $font-color-dark;
  469. }
  470. .title-right {
  471. flex-shrink: 0;
  472. text-align: right;
  473. align-self: flex-start;
  474. }
  475. .attr-box {
  476. font-size: $font-sm + 2rpx;
  477. color: $font-color-light;
  478. }
  479. .evaluate {
  480. color: #FFFFFF;
  481. font-size: 24rpx;
  482. display: inline-block;
  483. text-align: right;
  484. text {
  485. background: #FA2740;
  486. padding: 5rpx 15rpx;
  487. }
  488. }
  489. .yesevaluate {
  490. color: #333333;
  491. font-size: 24rpx;
  492. display: inline-block;
  493. text-align: right;
  494. text {
  495. border: 2rpx solid #333333;
  496. padding: 5rpx 15rpx;
  497. }
  498. }
  499. .price {
  500. font-size: $font-base + 2rpx;
  501. color: $font-color-dark;
  502. &:before {
  503. content: '¥';
  504. font-size: $font-sm;
  505. margin: 0 2rpx 0 8rpx;
  506. }
  507. }
  508. }
  509. }
  510. }
  511. // 标题头
  512. .f-header {
  513. display: flex;
  514. align-items: center;
  515. height: 80rpx;
  516. .tit-box {
  517. // @extend %font-title-box;
  518. }
  519. .tit {
  520. // @extend %font-title;
  521. }
  522. .f-left-icon {
  523. // @extend %f-left-icon;
  524. }
  525. }
  526. .bottomBox {
  527. padding: 0 $page-row-spacing;
  528. justify-content: space-around;
  529. margin-top: 50rpx;
  530. .buttomBottom {
  531. padding: 30rpx 80rpx;
  532. line-height: 1;
  533. color: $color-green;
  534. font-size: $font-base;
  535. border: 1px solid $color-green;
  536. border-radius: 99rpx;
  537. &.bgYellow {
  538. color: #FFFFFF;
  539. background-color: $color-yellow;
  540. border: 1px solid $color-yellow;
  541. }
  542. }
  543. }
  544. </style>