fix: 🐛 自提不回显问题,自提取消后券码取消显示

master
chc 2023-03-09 11:17:53 +08:00
parent d870ee409a
commit 1e41801612
4 changed files with 6 additions and 2 deletions

View File

@ -664,7 +664,7 @@ export default {
this.$store.state.canUseCoupons = res.data.result.canUseCoupons; this.$store.state.canUseCoupons = res.data.result.canUseCoupons;
this.$store.state.cantUseCoupons = res.data.result.cantUseCoupons; this.$store.state.cantUseCoupons = res.data.result.cantUseCoupons;
if (!res.data.result.memberAddress.id) { if (!res.data.result.memberAddress) {
// //
this.getUserAddress(); this.getUserAddress();
} else { } else {

View File

@ -297,6 +297,9 @@ export default {
{ {
orderStatus: "CANCELLED", // orderStatus: "CANCELLED", //
}, },
{
orderStatus: "STAY_PICKED_UP", //
},
], ],
cancelShow: false, // cancelShow: false, //
orderSn: "", //ordersn orderSn: "", //ordersn

View File

@ -21,7 +21,7 @@
<view class="logistics-List" v-else> <view class="logistics-List" v-else>
<view class="verificationCode" v-if="order.verificationCode"> <view class="verificationCode" v-if="order.verificationCode">
券码 {{ order.verificationCode }} 券码 {{ order.orderStatus == 'CANCELLED' ? '已失效' : order.verificationCode }}
</view> </view>
<view v-else class="logistics-List-title"> <view v-else class="logistics-List-title">
{{ '暂无物流信息' }} {{ '暂无物流信息' }}

View File

@ -499,6 +499,7 @@ export function orderStatusList (val) {
COMPLETED: "已完成", COMPLETED: "已完成",
COMPLETE: "已完成", COMPLETE: "已完成",
TAKE: "待核验", TAKE: "待核验",
STAY_PICKED_UP: "待自提",
}; };
return orderStatusList[val]; return orderStatusList[val];
} }