优惠移动端楼层装修

This commit is contained in:
paulGao
2022-04-21 14:57:33 +08:00
parent 744567e8de
commit c4168c9a2b
10 changed files with 138 additions and 62 deletions

View File

@@ -101,7 +101,7 @@
>
<span
class="item-desc-pintuan"
v-if="promotionMap['FULL_DISCOUNT'].fullRate"
v-if="promotionMap['FULL_DISCOUNT'].fullRate && promotionMap['FULL_DISCOUNT'].fullRateFlag"
>{{ promotionMap["FULL_DISCOUNT"].fullMoney }}立享{{
promotionMap["FULL_DISCOUNT"].fullRate
}}</span

View File

@@ -287,7 +287,7 @@ export default {
},
filterOrderStatus (status) { // 获取订单状态中文
const ob = this.orderStatusList.filter(e => { return e.status === status });
return ob[0].name
return ob && ob[0] ? ob[0].name : status
}
}
};