fix: 🐛 自提不回显问题,自提取消后券码取消显示
							parent
							
								
									d870ee409a
								
							
						
					
					
						commit
						1e41801612
					
				|  | @ -664,7 +664,7 @@ export default { | |||
|         this.$store.state.canUseCoupons = res.data.result.canUseCoupons; | ||||
|         this.$store.state.cantUseCoupons = res.data.result.cantUseCoupons; | ||||
| 
 | ||||
|         if (!res.data.result.memberAddress.id) { | ||||
|         if (!res.data.result.memberAddress) { | ||||
|           // 获取会员默认地址 | ||||
|           this.getUserAddress(); | ||||
|         } else { | ||||
|  |  | |||
|  | @ -297,6 +297,9 @@ export default { | |||
|         { | ||||
|           orderStatus: "CANCELLED", //已取消 | ||||
|         }, | ||||
|         { | ||||
|           orderStatus: "STAY_PICKED_UP", //待自提 | ||||
|         }, | ||||
|       ], | ||||
|       cancelShow: false, //是否显示取消 | ||||
|       orderSn: "", //ordersn | ||||
|  |  | |||
|  | @ -21,7 +21,7 @@ | |||
| 
 | ||||
|       <view class="logistics-List" v-else> | ||||
|         <view class="verificationCode" v-if="order.verificationCode"> | ||||
|           券码: {{ order.verificationCode }} | ||||
|           券码: {{ order.orderStatus == 'CANCELLED' ?  '已失效' : order.verificationCode }} | ||||
|         </view> | ||||
|         <view v-else class="logistics-List-title"> | ||||
|           {{ '暂无物流信息' }} | ||||
|  |  | |||
|  | @ -499,6 +499,7 @@ export function orderStatusList (val) { | |||
|     COMPLETED: "已完成", | ||||
|     COMPLETE: "已完成", | ||||
|     TAKE: "待核验", | ||||
|     STAY_PICKED_UP: "待自提", | ||||
|   }; | ||||
|   return orderStatusList[val]; | ||||
| } | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue