Blame view

src/pages/myOrder/components/OrderCard.vue 13 KB
46e5b6c99   BigBoss   add myOrder
1
  <template>
1b4b4938a   Adam   auto commit the c...
2
3
  	<view>
  		<view class="card" v-if="current == '200000' ">
46e5b6c99   BigBoss   add myOrder
4
  			<view class="cardHeader">
1b4b4938a   Adam   auto commit the c...
5
6
7
8
9
10
11
  				<text class="orderId" v-if="order_status == '0'||order_status == '100000'">订单号:{{order.order_no}}</text>
  				<text class="orderId"
  					v-if="order_status == '200000'||order_status == '300000'">下单时间:{{order.order_time}}</text>
  				<text class="orderType" v-if="order_status=='100000'">待付款</text>
  				<text class="orderType" v-if="order_status=='200000'">待收货</text>
  				<text class="orderType" v-if="order_status == '200000'||order_status == '300000'">已完成</text>
  				<text class="orderType" v-if="order_status == '300000'">已评价</text>
46e5b6c99   BigBoss   add myOrder
12
  			</view>
1b4b4938a   Adam   auto commit the c...
13
14
15
16
  			<view class="orderCardInfo" @click="toOrderInfo(order_status, order.order_id)"
  				v-for="(orderInfo, index) in orderInfoList" :key="index">
  				<!--  -->
  				<image :src="orderInfo.img" mode="aspectFill"></image>
46e5b6c99   BigBoss   add myOrder
17
  				<view class="infoText">
1b4b4938a   Adam   auto commit the c...
18
19
  					<view class="orderName">{{orderInfo.wsp_sku_name}}--1</view>
  					<view class="orderDescrib">{{orderInfo.wsp_sku_name}}</view>
46e5b6c99   BigBoss   add myOrder
20
  					<view class="infoText-bottom">
1b4b4938a   Adam   auto commit the c...
21
  						<view class="markPrice">{{orderInfo.price}}</view>
9a8f39ae3   BigBoss   订单
22
  						<view class="buy-num">X {{orderInfo.num}}</view>
46e5b6c99   BigBoss   add myOrder
23
24
25
  					</view>
  				</view>
  			</view>
1b4b4938a   Adam   auto commit the c...
26
27
28
29
  			<view class="payPrice">总额:<text class="priceNum">{{orderObj.all_money}}</text>,优惠:<text class="priceNum">{{orderObj.reduce_all_price}}</text>,实付:<text class="priceNum">{{orderObj.final_money}}</text> </view>
  			<!-- 0待付款 1 已付款 待收货 2 已收货待评价 3 已评价 -->
  			<view class="btns" v-if="order_status == '0'">
  				<view class="btn-type1" @click="cancleOrder">取消订单</view>
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
30
  				<view class="btn-type2" @click="paylog">去支付</view>
46e5b6c99   BigBoss   add myOrder
31
  			</view>
1b4b4938a   Adam   auto commit the c...
32
  			<view class="btns" v-if="order_status == '1'">
9a8f39ae3   BigBoss   订单
33
34
  				<view class="btn-type2">确认收货</view>
  			</view>
1b4b4938a   Adam   auto commit the c...
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  			<view class="btns" v-if="order_status == '2'">
  				<view class="btn-type2" @click="toDetail(orderObj.order_detail.sku_arr[0].shop_wood_id)">再次购买</view>
  			</view>
  
  		</view>
  		<view class="card" v-if="current == '100000'">
  			<view class="cardHeader">
  				<text class="orderId">订单号:{{order.order_no}}</text>
  				<text class="orderId"
  					v-if="order_status == '200000'||order_status == '300000'">下单时间:{{order.order_time}}</text>
  				<text class="orderType" v-if="order_status=='100000'">待付款</text>
  				<text class="orderType" v-if="order_status=='200000'">待收货</text>
  				<text class="orderType" v-if="order_status == '200000'||order_status == '300000'">已完成</text>
  				<!-- <text class="orderType" v-if="order_status == '3'">已评价</text> -->
  			</view>
  			<view class="orderCardInfo" @click="toOrderInfo(order_status, order.order_id)"
  				v-for="(orderInfo) in orderInfoList">
  				<image :src="orderInfo.img" mode="aspectFill"></image>
  				<view class="infoText">
  					<view class="orderName">{{orderInfo.wsp_sku_name}}</view>
  					<view class="orderDescrib">{{orderInfo.wsp_sku_name}}</view>
  					<view class="infoText-bottom">
  						<view class="markPrice">{{orderInfo.price}}</view>
  						<view class="buy-num">X {{orderInfo.num}}</view>
  					</view>
  				</view>
  			</view>
  			<view class="payPrice">总额:<text class="priceNum">{{orderObj.all_money}}</text>,优惠:<text class="priceNum">{{orderObj.reduce_all_price}}</text>,实付:<text class="priceNum">{{orderObj.final_money}}</text> </view>
  			<!-- <view class="payPrice">实付:<text class="priceNum">{{orderObj.final_money}}</text> </view> -->
  			<view class="btns" v-if="order_status == '100000'">
  				<view class="btn-type1" @click="cancleOrder">取消订单</view>
  				<view class="btn-type2" @click="paylog">去支付</view>
  			</view>
  			<view class="btns" v-if="order_status == '200000'">
  				<view class="btn-type1">确认收货</view>
  			</view>
  			<view class="btns" v-if="order_status == '200000'||order_status == '300000'">
  				<!-- <view class="btn-type1" v-if="order_status == '200000'" @click="toDetail(order.order_info[0].pid)">确认收货</view> -->
34703a767   BigBoss   订单逻辑修改
73
  				<view class="btn-type2" @click="toDetail(order.order_info[0].pid)">再次购买</view>
46e5b6c99   BigBoss   add myOrder
74
  			</view>
1b4b4938a   Adam   auto commit the c...
75
76
  		</view>
  	</view>
72d769fb7   范牧   myOrder
77
78
79
  </template>
  
  <script>
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
80
81
  	import MD5Util from '../../../utils/md5'
  	import store from "@/store";
46e5b6c99   BigBoss   add myOrder
82
  	export default {
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
83
84
  		data() {
  			return {
1b4b4938a   Adam   auto commit the c...
85
  			orderObj:JSON.parse(this.order.order_data_obj)
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
86
87
  			};
  		},
46e5b6c99   BigBoss   add myOrder
88
89
90
91
  		props: {
  			/**
  			 * 订单数据
  			 */
1b4b4938a   Adam   auto commit the c...
92
  			order: {},
46e5b6c99   BigBoss   add myOrder
93
94
95
  			/**
  			 * 当前选择
  			 */
1b4b4938a   Adam   auto commit the c...
96
97
  			current: String
  
72d769fb7   范牧   myOrder
98
  		},
9a8f39ae3   BigBoss   订单
99
  		created() {
1b4b4938a   Adam   auto commit the c...
100
101
102
  			console.error('order',this.order);
  			// let a = ;
  			// this.order = JSON.parse(this.order.order_data_obj);
9a8f39ae3   BigBoss   订单
103
104
105
  			// console.log(this.order.status );
  			// console.log(this.current);
  		},
1b4b4938a   Adam   auto commit the c...
106
107
108
109
110
111
112
113
114
115
116
117
118
  		computed: {
  			order_status() {
  				return this.order.order_status
  			},
  			// orderObj(){
  				
  			// 	return a;
  			// },
  			orderInfoList() {
  				let a = JSON.parse(this.order.order_data_obj);
  				console.log('orderInfoList=====>', a)
  				// return JSON.parse(this.order.order_info)
  				return a.order_detail.sku_arr;
9a8f39ae3   BigBoss   订单
119
  			}
72d769fb7   范牧   myOrder
120
  		},
1b4b4938a   Adam   auto commit the c...
121
  		methods: {
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
122
123
124
125
126
  			async paylog() {
  				const openid = uni.getStorageSync('openid')
  				const uid = this.order.uid;
  				//先拿订单详情
  				await store.dispatch('orderRead/getOrderInfo', {
1b4b4938a   Adam   auto commit the c...
127
128
129
130
  					pay_id: this.order.order_id,
  					uid: uid,
  					openid: openid
  				}).then((res) => {
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
131
  					// console.log(res)
1b4b4938a   Adam   auto commit the c...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
  					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()
  						}
  					})
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
213
214
215
216
217
218
219
220
221
222
223
224
  					//修改订单状态 待付款==>待收货
  					// store.dispatch("statusConfirm/confirm", {
  					//     uid: this.uid,
  					//     openid: this.openid,
  					//     oldway: "0",
  					//     way: "1",
  					//     pay_id: this.payId,
  					//     judgeContent: "",
  					//     orderInfo: this.orderInfo.order_info
  					//   })
  				})
  			},
1b4b4938a   Adam   auto commit the c...
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
  
  			async cancleOrder(e) {
  				const openid = uni.getStorageSync('openid')
  				const uid = this.order.uid;
  				//先从订单详情中拿到keyname
  				await store.dispatch('orderRead/getOrderInfo', {
  					pay_id: this.order.pay_id,
  					uid: uid,
  					openid: openid
  				}).then((res) => {
  					const keyname = res.order_info.keyname
  					uni.showModal({
  						title: "提示",
  						content: "现在取消,订单不可恢复哦,确认取消吗?",
  						success: function(res) {
  							if (res.confirm) {
  								store.dispatch("cancelOrder/cancel", {
  									keyname: keyname,
  									uid: uid,
  									openid: openid
  								}).then((res) => {
  									console.log(res)
  									if (res.code == 1) {
  										store.dispatch("myOrder/getList", {
  											way: ""
  										});
  									} else {
  										uni.showToast({
  											title: '取消失败,服务器错误!',
  											icon: 'none'
  										})
  									}
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
257
  								});
1b4b4938a   Adam   auto commit the c...
258
259
  							} else if (res.cancel) {
  								console.log("用户点击取消");
eed6c3ca9   BigBoss   订单列表添加支付和取消功能,修改订...
260
  							}
1b4b4938a   Adam   auto commit the c...
261
262
263
264
  						}
  					});
  				});
  
1a4cad719   BigBoss   修改待付款支付跳转逻辑&新增已完成...
265
  			},
1b4b4938a   Adam   auto commit the c...
266
267
  			toDetail(pid) {
  				console.log('pid', pid)
34703a767   BigBoss   订单逻辑修改
268
  				uni.navigateTo({
1b4b4938a   Adam   auto commit the c...
269
270
271
272
  					url: '../details/details?pid=' + pid,
  					fail: (res) => {
  						console.log(res)
  					},
34703a767   BigBoss   订单逻辑修改
273
274
  				});
  			},
1b4b4938a   Adam   auto commit the c...
275
  			toRefundment() {
2e191f6b1   BigBoss   修改详情页
276
277
278
279
280
281
  				uni.navigateTo({
  					url: '../refundment/refundment',
  					success: res => {},
  					fail: () => {},
  					complete: () => {}
  				});
9a8f39ae3   BigBoss   订单
282
  			},
1b4b4938a   Adam   auto commit the c...
283
284
285
  			toOrderInfo(status, payId) {
  				console.log(status, payId)
  				switch (status) {
9a8f39ae3   BigBoss   订单
286
  					// 0待付款  1待收货  2已收货 3 已评价
1b4b4938a   Adam   auto commit the c...
287
  					case '100000':
9a8f39ae3   BigBoss   订单
288
  						uni.navigateTo({
1b4b4938a   Adam   auto commit the c...
289
  							url: `../myOrderPaying/myOrderPaying?status=` + status + `&payId=` + payId,
9a8f39ae3   BigBoss   订单
290
291
292
293
  							fail(errMsg) {
  								console.log(errMsg)
  							}
  						})
1b4b4938a   Adam   auto commit the c...
294
295
  						break;
  					case '200000':
9a8f39ae3   BigBoss   订单
296
  						uni.navigateTo({
1b4b4938a   Adam   auto commit the c...
297
  							url: `../myOrderPaying/myOrderPaying?status=` + status + `&payId=` + payId,
9a8f39ae3   BigBoss   订单
298
299
300
301
  							fail(errMsg) {
  								console.log(errMsg)
  							}
  						})
1b4b4938a   Adam   auto commit the c...
302
303
304
305
306
307
308
309
310
311
  
  						break;
  						// case '200000' || '300000':
  						// 	uni.navigateTo({
  						// 		url: `../myOrderPaying/myOrderPaying?status=` + status + `&payId=` + payId,
  						// 		fail(errMsg) {
  						// 			console.log(errMsg)
  						// 		}
  						// 	})
  						// 	break;
9a8f39ae3   BigBoss   订单
312
  					default:
1b4b4938a   Adam   auto commit the c...
313
314
  						break;
  
9a8f39ae3   BigBoss   订单
315
  				}
2e191f6b1   BigBoss   修改详情页
316
  			}
72d769fb7   范牧   myOrder
317
318
319
320
321
  		}
  	}
  </script>
  
  <style lang="scss">
1b4b4938a   Adam   auto commit the c...
322
323
324
325
326
327
328
329
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
357
358
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
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
  	.card {
  		width: 670rpx;
  		// height: 478rpx;
  		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;
  			border: 1px #000 solid;
  			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;
  			// justify-content: justify-content-between;
  			align-items: center;
  			margin: 10rpx;
  
  			// margin-left: auto;
  			// border: 1px solid #000;
  			.btn-type1 {
  				height: 48rpx;
  				width: 156rpx;
  				border: 1px solid #ff6b4a;
  				// border: 1px solid #000;
  				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: 1px solid #000;
  				border-radius: 12px;
  				border-radius: 12px;
  				text-align: center;
  				line-height: 48rpx;
  				font-size: 12px;
  				color: #ffffff;
  				margin-left: 20rpx;
  			}
  		}
  	}
  </style>