Blame view

src/pages/myOrder/components/OrderCard.vue 14.3 KB
46e5b6c99   BigBoss   add myOrder
1
  <template>
92d01cfd5   Adam   修正订单数据
2
3
4
5
    <view>
      <view
        class="card"
        v-if="current == status"
92d01cfd5   Adam   修正订单数据
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
      >
        <view class="cardHeader">
          <text
            class="orderId"
            v-if="status == '0'||status == '1'"
          >订单号:{{order.pay_id}}</text>
          <text
            class="orderId"
            v-if="status == '2'||status == '3'"
          >下单时间:{{order.pay_time}}</text>
          <text
            class="orderType"
            v-if="status=='0'"
          >待付款</text>
          <text
            class="orderType"
            v-if="status=='1'"
          >待收货</text>
          <text
            class="orderType"
            v-if="status == '2'||status == '3'"
          >已完成</text>
          <!-- <text class="orderType" v-if="status == '3'">已评价</text> -->
        </view>
        <view
          class="orderCardInfo"
e92e93f73   范牧   合并冲突
32
          @click="toOrderInfo(status,order.pay_id)"
36e559203   BigBoss   逻辑完善
33
          v-for="(orderInfo, index) in orderInfoList"
92d01cfd5   Adam   修正订单数据
34
35
36
37
38
39
40
41
42
43
          :key="index"
        >
          <image
            :src="orderInfo.imgUrl"
            mode="aspectFill"
          ></image>
          <view class="infoText">
            <view class="orderName">{{orderInfo.p_name}}</view>
            <view class="orderDescrib">{{orderInfo.p_name}}</view>
            <view class="infoText-bottom">
ecde40693   范牧   部分bug修改
44
              <view class="markPrice">¥{{orderInfo.nowPrice}}</view>
92d01cfd5   Adam   修正订单数据
45
46
47
48
              <view class="buy-num">X {{orderInfo.num}}</view>
            </view>
          </view>
        </view>
ecde40693   范牧   部分bug修改
49
        <view class="payPrice">实付:<text class="priceNum">¥{{order.total_fee}}</text> </view>
92d01cfd5   Adam   修正订单数据
50
51
52
53
54
        <!-- 0待付款 1 已付款 待收货 2 已收货待评价 3 已评价 -->
        <view
          class="btns"
          v-if="status == '0'"
        >
e92e93f73   范牧   合并冲突
55
56
57
58
59
60
61
62
          <view
            class="btn-type1"
            @click="cancleOrder"
          >取消订单</view>
          <view
            class="btn-type2"
            @click="paylog"
          >去支付</view>
92d01cfd5   Adam   修正订单数据
63
64
65
66
67
        </view>
        <view
          class="btns"
          v-if="status == '1'"
        >
29c972fd5   范牧   再次购买、确认订单修改
68
69
70
71
          <view
            @tap="confirmOrder"
            class="btn-type2"
          >确认收货</view>
92d01cfd5   Adam   修正订单数据
72
73
74
75
76
        </view>
        <view
          class="btns"
          v-if="status == '2'"
        >
31b5bebd4   范牧   订单样式修改
77
78
          <view
            class="btn-type2"
e92e93f73   范牧   合并冲突
79
            @click="toDetail(order.order_info[0].pid)"
31b5bebd4   范牧   订单样式修改
80
          >再次购买</view>
92d01cfd5   Adam   修正订单数据
81
        </view>
31b5bebd4   范牧   订单样式修改
82
83
84
85
86
87
88
        <!--   <view class="btns" v-if="status == '3'">
          <view class="btn-type2">再次购买</view>
        </view> -->
      </view>
      <view
        class="card"
        v-if="current == '10'"
31b5bebd4   范牧   订单样式修改
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
      >
        <view class="cardHeader">
          <text
            class="orderId"
            v-if="status == '0'||status == '1'"
          >订单号:{{order.pay_id}}</text>
          <text
            class="orderId"
            v-if="status == '2'||status == '3'"
          >下单时间:{{order.pay_time}}</text>
          <text
            class="orderType"
            v-if="status=='0'"
          >待付款</text>
          <text
            class="orderType"
            v-if="status=='1'"
          >待收货</text>
          <text
            class="orderType"
            v-if="status == '2'||status == '3'"
          >已完成</text>
          <!-- <text class="orderType" v-if="status == '3'">已评价</text> -->
        </view>
        <view
          class="orderCardInfo"
e92e93f73   范牧   合并冲突
115
          @click="toOrderInfo(status,order.pay_id)"
ecde40693   范牧   部分bug修改
116
117
          v-for="(orderInfo, index) in orderInfoList"
          :key="index"
31b5bebd4   范牧   订单样式修改
118
119
120
121
122
123
124
125
126
        >
          <image
            :src="orderInfo.imgUrl"
            mode="aspectFill"
          ></image>
          <view class="infoText">
            <view class="orderName">{{orderInfo.p_name}}</view>
            <view class="orderDescrib">{{orderInfo.p_name}}</view>
            <view class="infoText-bottom">
ecde40693   范牧   部分bug修改
127
              <view class="markPrice">¥{{orderInfo.nowPrice}}</view>
31b5bebd4   范牧   订单样式修改
128
129
130
131
              <view class="buy-num">X {{orderInfo.num}}</view>
            </view>
          </view>
        </view>
ecde40693   范牧   部分bug修改
132
        <view class="payPrice">实付:<text class="priceNum">¥{{order.total_fee}}</text> </view>
31b5bebd4   范牧   订单样式修改
133
134
135
136
        <view
          class="btns"
          v-if="status == '0'"
        >
e92e93f73   范牧   合并冲突
137
138
139
140
141
142
143
144
          <view
            class="btn-type1"
            @click="cancleOrder"
          >取消订单</view>
          <view
            class="btn-type2"
            @click="paylog"
          >去支付</view>
31b5bebd4   范牧   订单样式修改
145
146
147
148
149
        </view>
        <view
          class="btns"
          v-if="status == '1'"
        >
29c972fd5   范牧   再次购买、确认订单修改
150
151
152
153
          <view
            class="btn-type2"
            @tap="confirmOrder"
          >确认收货</view>
31b5bebd4   范牧   订单样式修改
154
155
156
157
158
159
160
        </view>
        <view
          class="btns"
          v-if="status == '2'||status == '3'"
        >
          <view
            class="btn-type2"
29c972fd5   范牧   再次购买、确认订单修改
161
            @click="toDetail(order.order_info.list[0].pid)"
31b5bebd4   范牧   订单样式修改
162
163
          >再次购买</view>
        </view>
92d01cfd5   Adam   修正订单数据
164
165
      </view>
    </view>
72d769fb7   范牧   myOrder
166
167
168
  </template>
  
  <script>
e92e93f73   范牧   合并冲突
169
170
  import MD5Util from '../../../utils/md5'
  import store from '@/store'
31b5bebd4   范牧   订单样式修改
171
  export default {
e92e93f73   范牧   合并冲突
172
173
174
175
176
    data() {
      return {
  
      }
    },
31b5bebd4   范牧   订单样式修改
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
    props: {
      /**
         * 订单数据
         */
      order: {},
      /**
         * 当前选择
         */
      current: Number,
  
    },
    created() {
      console.log('order', this.order)
      // console.log(this.order.status );
      // console.log(this.current);
    },
    computed: {
      status() {
        return this.order.status
      },
      orderInfoList() {
ecde40693   范牧   部分bug修改
198
        return this.order.order_info.list
31b5bebd4   范牧   订单样式修改
199
200
      },
    },
31b5bebd4   范牧   订单样式修改
201
    methods: {
e92e93f73   范牧   合并冲突
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
      async paylog() {
        const openid = uni.getStorageSync('openid')
        const uid = this.order.uid
        // 先拿订单详情
        await store.dispatch('orderRead/getOrderInfo', {
          pay_id: this.order.pay_id,
          uid: uid,
          openid: openid,
        }).then((res) => {
          // console.log(res)
          const { data, exKeyName: keyName } = res.order_info
          const timeStamp = new Date().getTime().toString()
          const total_fee = res.total_fee
          const payId = res.pay_id
          const nonceStr = 'asfafasfasfasfasf'
          // 支付参数
          const fieldSet = {
            openid: openid,
            uid: uid,
            shopid: 0,
            payCate: 2020,
            payMoney: total_fee,
            payWoodId: `fcdj-${uid}-${keyName}`,
            payWoodDesc: '在【非常戴镜】的微信付款凭证',
            nonceStr,
            signType: 'MD5',
            app_uid: 2020,
            timeStamp,
            keyname: keyName,
            billInfo: JSON.stringify(data),
          }
          // 请求后台支付接口
          store.dispatch('order/pay', fieldSet).then(({ data, data2, pay_id: payId }) => {
            if (data.return_code === 'SUCCESS' && data.result_code === 'SUCCESS') {
              const stringA = `appId=wx115b25aa396d27ac&nonceStr=${nonceStr}&package=prepay_id=${data.prepay_id}&signType=MD5&timeStamp=${timeStamp}`
              const stringSignTemp = stringA + '&key=NewMoney2017hatemydaddy123456789'
  
              // 微信支付接口
              uni.requestPayment({
                appId: data.appid,
                timeStamp,
                nonceStr,
                total_fee: total_fee,
                package: `prepay_id=${data.prepay_id}`,
                signType: 'MD5',
                paySign: MD5Util.MD5(stringSignTemp).toUpperCase(),
                success: (res) => {
                  // 支付成功
                  uni.showModal({
                    content: '支付成功',
                    showCancel: false,
                  })
                  // //修改订单状态 待付款==>待收货
                  // store.dispatch("statusConfirm/confirm", {
                  //     uid: this.uid,
                  //     openid: this.openid,
                  //     oldway: "0",
                  //     way: "1",
                  //     pay_id: payId,
                  //     judgeContent: "",
                  //     orderInfo: this.orderInfo.order_info
                  //   })
                },
                fail: (res) => {
                  // 支付失败
                  uni.showModal({
                    content: '支付失败',
                    showCancel: false,
                  })
                },
                complete: () => {
                  uni.hideLoading()
                },
              })
            } else {
              uni.showModal({
                content: '支付失败',
                showCancel: false,
              })
              console.log('支付失败')
              uni.hideLoading()
            }
          })
          // 修改订单状态 待付款==>待收货
          // store.dispatch("statusConfirm/confirm", {
          //     uid: this.uid,
          //     openid: this.openid,
          //     oldway: "0",
          //     way: "1",
          //     pay_id: this.payId,
          //     judgeContent: "",
          //     orderInfo: this.orderInfo.order_info
          //   })
        })
      },
29c972fd5   范牧   再次购买、确认订单修改
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
      confirmOrder() {
      // 确认收货 way1 ==>way2
        console.log('this.order.order_info', this.order)
        store
          .dispatch('statusConfirm/confirm', {
            oldway: '1',
            way: '2',
            pay_id: this.order.pay_id,
            judgeContent: '',
            orderInfo: JSON.stringify(this.order.order_info),
          })
          .then((res) => {
            if (res.data.code === 1) {
              uni.showToast({
                title: '已确认',
                mask: true,
                duration: 1500,
                icon: 'success',
              })
            } else {
              uni.showToast({
                title: '服务器错误,确认失败!',
                mask: true,
              })
            }
            setTimeout(() => {
              store.dispatch('myOrder/getList', {
                way: '',
              })
            }, 1500)
          })
      },
e92e93f73   范牧   合并冲突
329
      async cancleOrder(e) {
ecde40693   范牧   部分bug修改
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
        const { keyname } = this.order.order_info
        console.log('keyname', keyname)
  
        uni.showModal({
          title: '提示',
          content: '现在取消,订单不可恢复哦,确认取消吗?',
          success: function(res) {
            if (res.confirm) {
              store.dispatch('cancelOrder/cancel', {
                keyname: keyname,
              }).then((res) => {
                console.log(res)
                if (res.code === 1) {
                  store.dispatch('myOrder/getList', {
                    way: '',
                  })
                } else {
                  uni.showToast({
                    title: '取消失败,服务器错误!',
                    icon: 'none',
                  })
                }
              })
            } else if (res.cancel) {
              console.log('用户点击取消')
            }
          },
e92e93f73   范牧   合并冲突
357
358
        })
      },
31b5bebd4   范牧   订单样式修改
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
      toDetail(pid) {
        console.log('pid', pid)
        uni.navigateTo({
          url: '../details/details?pid=' + pid,
          fail: (res) => { console.log(res) },
        })
      },
      toRefundment() {
        uni.navigateTo({
          url: '../refundment/refundment',
          success: res => {},
          fail: () => {},
          complete: () => {},
        })
      },
      toOrderInfo(status, payId) {
        console.log(status, payId)
        switch (status) {
          // 0待付款  1待收货  2已收货 3 已评价
          case '0':
            uni.navigateTo({
              url: '../myOrderPaying/myOrderPaying?status=' + status + '&payId=' + payId,
              fail(errMsg) {
                console.log(errMsg)
              },
            })
            break
          case '1':
            uni.navigateTo({
              url: '../myOrderPaying/myOrderPaying?status=' + status + '&payId=' + payId,
              fail(errMsg) {
                console.log(errMsg)
              },
            })
  
            break
e92e93f73   范牧   合并冲突
395
          case '2' || '3':
31b5bebd4   范牧   订单样式修改
396
397
398
399
400
401
402
403
404
405
406
407
408
            uni.navigateTo({
              url: '../myOrderPaying/myOrderPaying?status=' + status + '&payId=' + payId,
              fail(errMsg) {
                console.log(errMsg)
              },
            })
            break
          default:
            break
        }
      },
    },
  }
92d01cfd5   Adam   修正订单数据
409
  
72d769fb7   范牧   myOrder
410
411
412
  </script>
  
  <style lang="scss">
92d01cfd5   Adam   修正订单数据
413
414
  .card {
    width: 670rpx;
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
415
    // height: 478rpx;
92d01cfd5   Adam   修正订单数据
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
    background: #ffffff;
    box-shadow: 0 0 10px 0 rgba(177, 128, 128, 0.06);
    border-radius: 8px;
    border-radius: 8px;
    margin-top: 20rpx;
    padding: 40rpx;
    box-sizing: border-box;
    .cardHeader {
      width: 100%;
      height: 40rpx;
      display: flex;
      justify-content: space-between;
      align-items: center;
      .orderId {
        font-size: 12px;
        color: #999999;
      }
      .orderType {
        font-size: 14px;
        color: #ff6b4a;
      }
    }
    .orderCardInfo {
      width: 100%;
      height: 188rpx;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      margin-top: 40rpx;
      image {
        height: 188rpx;
        width: 188rpx;
        margin-right: 24rpx;
      }
      .infoText {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        height: 188rpx;
        width: 368rpx;
      }
      .orderName {
        font-size: 14px;
        color: #333333;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
      }
      .orderDescrib {
        font-size: 12px;
        color: #999999;
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
      }
      .infoText-bottom {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        .markPrice {
          font-size: 14px;
          color: #ff6b4a;
          margin-right: 20rpx;
        }
        .buy-num {
          font-size: 12px;
          color: #999999;
        }
      }
    }
    .payPrice {
      text-align: right;
      margin: 20rpx 0;
      font-size: 14px;
      color: #333333;
      .priceNum {
        font-size: 14px;
        color: #ff6b4a;
      }
    }
    .btns {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      .btn-type1 {
        height: 48rpx;
        width: 156rpx;
        border: 1px solid #ff6b4a;
        border-radius: 12px;
        border-radius: 12px;
        text-align: center;
        line-height: 48rpx;
        font-size: 12px;
        color: #ff6b4a;
      }
      .btn-type2 {
        height: 48rpx;
        width: 140rpx;
        background: #ff6b4a;
        border-radius: 12px;
        border-radius: 12px;
        text-align: center;
        line-height: 48rpx;
        font-size: 12px;
        color: #ffffff;
        margin-left: 20rpx;
      }
    }
  }
72d769fb7   范牧   myOrder
531
  </style>