distribution-detail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. <!-- 自提配送详情,自动发货详情 -->
  2. <template>
  3. <view class="page_box">
  4. <view class="content_box">
  5. <view class="card-wrap" :style="expressType !== 'selfetch' ? 'border-bottom-left-radius:0;border-bottom-right-radius:0;' : ''">
  6. <!-- 商品卡片 -->
  7. <view class="order-card-box">
  8. <shopro-mini-card :title="itemDetail.goods_title" :image="itemDetail.goods_image">
  9. <template #describe>
  10. <view class="order-sku u-ellipsis-1">
  11. <text class="order-num">数量:{{ itemDetail.goods_num || 0 }};</text>
  12. {{ itemDetail.goods_sku_text ? itemDetail.goods_sku_text : '' }}
  13. </view>
  14. </template>
  15. <template #cardBottom>
  16. <view class="card-price-box u-flex">
  17. <text class="order-price font-OPPOSANS">¥{{ itemDetail.goods_price || 0 }}</text>
  18. <button class="u-reset-button status-btn" v-if="itemDetail.status_name">{{ itemDetail.status_name }}</button>
  19. </view>
  20. </template>
  21. </shopro-mini-card>
  22. </view>
  23. <!-- 到店自提 -->
  24. <view class="u-flex-col u-col-center u-m-b-20 u-p-y-20" v-if="expressType == 'selfetch' && itemDetail.status_code !== 'refund_finish' && qrcodeList.length">
  25. <image class="qr-code--img u-m-y-20" :src="allqrcodepath" mode=""></image>
  26. <view class="all-qrcode-title u-m-b-20">总核销码</view>
  27. <view class="detail-item">
  28. <view class="item-title u-flex">核销码</view>
  29. <view class="u-flex u-row-between u-m-y-20" v-for="code in qrcodeList" :key="code.code">
  30. <view>
  31. <text :style="code.status_code !== 'nouse' ? 'color:#999' : ''" class="item-content">{{ code.code }}</text>
  32. <text :style="code.status_code !== 'nouse' ? 'color:#999' : ''" class="item-status u-m-x-30">{{ code.status_name }}</text>
  33. </view>
  34. <button class="u-reset-button check-code" v-if="code.status_code == 'nouse'" @tap="checkCode(code.code)">查看</button>
  35. </view>
  36. <view class="item-tip">为保障您的权益,未到店消费前请不要将提货码提供给商家</view>
  37. </view>
  38. </view>
  39. </view>
  40. <!-- 自提 -->
  41. <view class="detail-item u-p-20 " v-if="expressType == 'selfetch'">
  42. <view class="item-title">{{ storeInfo.name }}</view>
  43. <view class="u-flex u-row-between">
  44. <view class="u-m-r-20" style="flex: 3;">
  45. <view class="item-content">
  46. {{ storeInfo.province_name || '' }}{{ storeInfo.city_name || '' }}{{ storeInfo.area_name || '' }}{{ storeInfo.address || '' }}
  47. </view>
  48. <view class="item-content">营业时间:{{ storeInfo.openhours || '' }}</view>
  49. </view>
  50. <view class="u-flex-col u-col-center location-box" style="flex: 1;" @tap="openStoreMap">
  51. <text class="u-iconfont uicon-map-fill" style="color: #4fbbff;font-size: 34rpx;"></text>
  52. <text class="location-text u-m-t-10">到这去</text>
  53. </view>
  54. </view>
  55. </view>
  56. <!-- 配送 -->
  57. <view
  58. class="detail-item u-p-20"
  59. :style="expressType !== 'selfetch' ? 'border-top-left-radius:0;border-top-right-radius:0;' : ''"
  60. v-if="expressType == 'store' && itemDetail.order"
  61. >
  62. <view class="item-title">配送信息</view>
  63. <view class="item-content">配送地址:{{ itemDetail.order.city_name || '' }}{{ itemDetail.order.area_name || '' }}{{ itemDetail.order.address || '' }}</view>
  64. <view class="item-content">配送时间:{{ itemDetail.ext_arr.dispatch_date || '' }}</view>
  65. </view>
  66. <!-- 自动 -->
  67. <view class="detail-item u-p-20" :style="expressType !== 'selfetch' ? 'border-top-left-radius:0;border-top-right-radius:0;' : ''" v-if="expressType == 'autosend'">
  68. <view class="item-title">发货信息</view>
  69. <view v-if="itemDetail.ext_arr && itemDetail.ext_arr.autosend_type == 'params'" v-for="item in autosendList" :key="item.value" class="item-content">
  70. {{ item.name }}:{{ item.value }}
  71. </view>
  72. <view v-if="itemDetail.ext_arr && itemDetail.ext_arr.autosend_type == 'text'" class="item-content">{{ itemDetail.ext_arr.autosend_content }}</view>
  73. <view v-if="!(itemDetail.ext_arr && itemDetail.ext_arr.autosend_type)" style="color: #999;" class="item-content">暂未发货~</view>
  74. </view>
  75. </view>
  76. <view class="foot_box u-flex u-row-center u-col-center u-p-b-20" v-if="expressType == 'selfetch' || expressType == 'store'">
  77. <button class="service-btn u-reset-button u-flex u-col-center u-row-center" @tap="onService">
  78. <text class="u-iconfont uicon-phone-fill u-m-r-10" style="color: #fff;font-size: 40rpx;"></text>
  79. 联系商家
  80. </button>
  81. </view>
  82. <!-- 二维码弹窗 -->
  83. <u-popup v-model="showQrcode" border-radius="20" mode="center">
  84. <view class="qr-code-modal u-flex-col u-row-center u-col-center">
  85. <image class="qr-code-img" :src="qrcodepath" mode=""></image>
  86. <view class="qr-code-text">核销码:{{ qrcode }}</view>
  87. <button class="u-reset-button hide-qrcode" @tap="showQrcode = false">关闭</button>
  88. </view>
  89. </u-popup>
  90. <!-- 二维码绘制 -->
  91. <view class="hideCanvasView">
  92. <canvas class="hideCanvas" canvas-id="qrcode_img" :style="{ width: (poster.width || 1) + 'px', height: (poster.height || 1) + 'px' }"></canvas>
  93. </view>
  94. </view>
  95. </template>
  96. <script>
  97. import _app from '@/shopro/poster/QS-SharePoster/app.js';
  98. import { getSharePoster } from '@/shopro/poster/QS-SharePoster/QS-SharePoster.js';
  99. export default {
  100. components: {},
  101. data() {
  102. return {
  103. poster: {},
  104. canvasId: 'qrcode_img',
  105. qrcode: '', //核销总码
  106. qrcodeList: [], //核销码列表
  107. storeInfo: {}, //自提点信息
  108. qrcodepath: '', //单核销码
  109. allqrcodepath: '', //总核销码
  110. autosendList: [], //自动发货列表。
  111. itemDetail: {}, //订单商品详情
  112. expressType: 'express',
  113. barTitle: {
  114. express: '物流快递',
  115. selfetch: '到店/自提',
  116. store: '商家配送',
  117. autosend: '自动发货'
  118. },
  119. showQrcode: false //二维码弹窗
  120. };
  121. },
  122. computed: {},
  123. onLoad() {
  124. this.expressType = this.$Route.query.expressType;
  125. uni.setNavigationBarTitle({
  126. title: this.barTitle[this.expressType]
  127. });
  128. this.getItemGoodsDetail();
  129. },
  130. onPullDownRefresh() {
  131. this.getItemGoodsDetail();
  132. },
  133. methods: {
  134. jump(path, parmas) {
  135. this.$Router.push({
  136. path: path,
  137. query: parmas
  138. });
  139. },
  140. // 自提打开地图
  141. openStoreMap() {
  142. uni.openLocation({
  143. latitude: +this.storeInfo.latitude,
  144. longitude: +this.storeInfo.longitude,
  145. success: function() {
  146. console.log('success');
  147. },
  148. fail: err => {
  149. console.log(err);
  150. }
  151. });
  152. },
  153. // 跳转客服
  154. onService() {
  155. this.$tools.callPhone(this.itemDetail.store.phone);
  156. },
  157. // 查看核销码
  158. checkCode(code) {
  159. this.qrcode = code;
  160. this.shareFc('qrcode').then(res => {
  161. this.showQrcode = true;
  162. });
  163. },
  164. // 订单详情
  165. getItemGoodsDetail() {
  166. let that = this;
  167. that.$http('order.itemDetail', {
  168. id: that.$Route.query.orderId,
  169. order_item_id: that.$Route.query.orderItemId,
  170. type: 'dispatch'
  171. }).then(res => {
  172. uni.stopPullDownRefresh();
  173. if (res.code === 1) {
  174. that.itemDetail = res.data;
  175. that.qrcodeList = res.data.verify;
  176. that.storeInfo = res.data.store;
  177. if (res.data.ext_arr.autosend_content && res.data.ext_arr.autosend_type == 'params') {
  178. that.autosendList = JSON.parse(res.data.ext_arr.autosend_content);
  179. }
  180. if (that.expressType == 'selfetch') {
  181. let _arr = [];
  182. that.qrcodeList.forEach(code => {
  183. _arr.push(code.code);
  184. });
  185. that.qrcode = _arr.join(',');
  186. if (that.qrcodeList.length) {
  187. that.shareFc();
  188. }
  189. }
  190. }
  191. });
  192. },
  193. // 绘制二维码
  194. async shareFc(type) {
  195. let that = this;
  196. try {
  197. console.log('准备生成:' + new Date());
  198. const d = await getSharePoster({
  199. _this: this, //若在组件中使用 必传
  200. posterCanvasId: this.canvasId, //canvasId
  201. delayTimeScale: 20, //延时系数
  202. drawDelayTime: 500, //draw延时时间
  203. background: {
  204. width: 100,
  205. height: 100,
  206. backgroundColor: '#fff'
  207. },
  208. drawArray: ({ bgObj, type, bgScale }) => {
  209. return new Promise((rs, rj) => {
  210. rs([
  211. {
  212. type: 'qrcode',
  213. text: this.qrcode,
  214. size: bgObj.width,
  215. dx: 0,
  216. dy: 0,
  217. correctLevel: 1
  218. }
  219. ]);
  220. });
  221. },
  222. setCanvasWH: ({ bgObj, type, bgScale }) => {
  223. // 为动态设置画布宽高的方法,
  224. this.poster = bgObj;
  225. }
  226. });
  227. if (type == 'qrcode') {
  228. this.qrcodepath = d.poster.tempFilePath;
  229. } else {
  230. this.allqrcodepath = d.poster.tempFilePath;
  231. }
  232. } catch (e) {
  233. _app.hideLoading();
  234. _app.showToast(JSON.stringify(e));
  235. }
  236. }
  237. }
  238. };
  239. </script>
  240. <style lang="scss">
  241. // 二维码
  242. .hideCanvasView {
  243. position: relative;
  244. .hideCanvas {
  245. position: fixed;
  246. top: -99999upx;
  247. left: -99999upx;
  248. z-index: -99999;
  249. }
  250. }
  251. // 二维码弹窗
  252. .qr-code-modal {
  253. width: 610rpx;
  254. border-radius: 20rpx;
  255. background-color: #fff;
  256. margin: 0 auto;
  257. .qr-code-img {
  258. margin: 100rpx;
  259. width: 400rpx;
  260. height: 400rpx;
  261. }
  262. .qr-code-text {
  263. color: #999;
  264. font-size: 28rpx;
  265. }
  266. .hide-qrcode {
  267. width: 492rpx;
  268. line-height: 70rpx;
  269. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  270. box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  271. border-radius: 35rpx;
  272. font-size: 28rpx;
  273. font-weight: 500;
  274. color: rgba(255, 255, 255, 1);
  275. margin: 30rpx;
  276. }
  277. }
  278. .content_box {
  279. padding: 20rpx;
  280. }
  281. .no-radius {
  282. border-radius: 0 !important;
  283. }
  284. .card-wrap {
  285. background-color: #fff;
  286. padding: 20rpx 20rpx 0;
  287. border-radius: 20rpx;
  288. }
  289. .order-card-box {
  290. height: 200rpx;
  291. border-bottom: 2rpx solid rgba(238, 238, 238, 0.6);
  292. .order-sku {
  293. font-size: 24rpx;
  294. font-weight: 400;
  295. color: rgba(153, 153, 153, 1);
  296. width: 450rpx;
  297. margin-bottom: 20rpx;
  298. .order-num {
  299. margin-right: 10rpx;
  300. }
  301. }
  302. .card-price-box {
  303. .status-btn {
  304. height: 32rpx;
  305. border: 1rpx solid rgba(207, 169, 114, 1);
  306. border-radius: 15rpx;
  307. font-size: 20rpx;
  308. font-weight: 400;
  309. color: rgba(168, 112, 13, 1);
  310. padding: 0 10rpx;
  311. margin-left: 20rpx;
  312. background: rgba(233, 183, 102, 0.16);
  313. }
  314. .order-price {
  315. font-size: 26rpx;
  316. font-weight: 600;
  317. color: rgba(51, 51, 51, 1);
  318. }
  319. }
  320. }
  321. .qr-code--img {
  322. width: 200rpx;
  323. height: 200rpx;
  324. }
  325. .detail-item {
  326. background: rgba(255, 255, 255, 1);
  327. border-radius: 20rpx;
  328. width: 100%;
  329. .item-title {
  330. font-size: 28rpx;
  331. font-weight: bold;
  332. color: rgba(51, 51, 51, 1);
  333. height: 60rpx;
  334. }
  335. .item-content {
  336. font-size: 26rpx;
  337. font-weight: 400;
  338. color: rgba(51, 51, 51, 1);
  339. line-height: 50rpx;
  340. }
  341. .item-status {
  342. font-size: 26rpx;
  343. font-weight: 400;
  344. color: rgba(179, 132, 54, 1);
  345. }
  346. .item-tip {
  347. font-size: 24rpx;
  348. font-weight: 400;
  349. color: rgba(196, 196, 196, 1);
  350. }
  351. .check-code {
  352. background: none;
  353. border-radius: 25rpx;
  354. border: 1rpx solid rgba(179, 132, 54, 1);
  355. padding: 0;
  356. width: 100rpx;
  357. line-height: 50rpx;
  358. font-size: 28rpx;
  359. color: rgba(179, 132, 54, 1);
  360. }
  361. .location-box {
  362. height: 100%;
  363. justify-content: center;
  364. position: relative;
  365. &::before {
  366. content: '';
  367. width: 2rpx;
  368. height: 94rpx;
  369. background: #eeeeee;
  370. position: absolute;
  371. top: 50%;
  372. transform: translateY(-50%);
  373. left: 0;
  374. }
  375. .location-icon {
  376. color: #4fbbff;
  377. margin-bottom: 20rpx;
  378. }
  379. .location-text {
  380. color: #999;
  381. font-size: 26rpx;
  382. }
  383. }
  384. }
  385. .service-btn {
  386. padding: 0;
  387. width: 710rpx;
  388. line-height: 80rpx;
  389. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  390. box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  391. border-radius: 40rpx;
  392. font-size: 30rpx;
  393. font-weight: 500;
  394. color: rgba(255, 255, 255, 1);
  395. }
  396. </style>