学习很差啦 2023-03-10 09:09:34 +08:00
commit e768a4c1db
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.cantUseCoupons = res.data.result.cantUseCoupons;
if (!res.data.result.memberAddress.id) {
if (!res.data.result.memberAddress) {
//
this.getUserAddress();
} else {

View File

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

View File

@ -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">
{{ '暂无物流信息' }}

View File

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