Fix:5126 【商城小程序】地址被驳回状态的提示词修改
This commit is contained in:
@@ -485,7 +485,9 @@
|
||||
v-if="Number(order.addressUpdateStatus) === 2"
|
||||
class="v12-font-24 v12-primary-text"
|
||||
style="background: rgba(246,246,246,0.7); border-radius: 40rpx; padding: 12rpx ;"
|
||||
>修改地址审核未通过,{{ order.addressUpdateReason }}</view>
|
||||
>修改地址审核未通过,
|
||||
<text v-if="order.isFastPost !== 0">商家将按原地址发货,预计{{ getTime(order.isFastPost) }}发货,</text>
|
||||
(驳回原因:{{ order.addressUpdateReason }})</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@@ -87,7 +87,8 @@
|
||||
v-if="Number(orderInfo.addressUpdateStatus) === 2"
|
||||
class="v12-font-24 v12-primary-text"
|
||||
style="background: rgba(246,246,246,0.7); border-radius: 40rpx; padding: 12rpx;"
|
||||
>修改地址审核未通过,{{ orderInfo.addressUpdateReason }}</view>
|
||||
>修改地址审核未通过,<text v-if="orderInfo.isFastPost !== 0">商家将按原地址发货,预计{{ getTime(orderInfo.isFastPost) }}发货,</text>
|
||||
(驳回原因:{{ orderInfo.addressUpdateReason }})</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -709,6 +710,16 @@ export default {
|
||||
},
|
||||
methods: {
|
||||
copyClipboard,
|
||||
getTime(type) {
|
||||
const timeMap = {
|
||||
1:"48小时内",
|
||||
2:"72小时内",
|
||||
3:"24小时内",
|
||||
4: "7天内",
|
||||
5: "15天内"
|
||||
}
|
||||
return timeMap[type]
|
||||
},
|
||||
canShowModifyAddress(order) {
|
||||
if (!order || this.isGroup || Number(order.isTickets || 0) === 1) {
|
||||
return false
|
||||
|
||||
Reference in New Issue
Block a user