orderDetail.vue 19 KB

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