|
|
@@ -36,7 +36,7 @@
|
|
|
<text class="refund-label">退款金额</text>
|
|
|
<text class="refund-currency">¥</text>
|
|
|
<text class="refund-value">{{ formatMoney(refundAmount) }}</text>
|
|
|
- <text class="refund-note">不包含餐盒费</text>
|
|
|
+ <text v-if="containerFeeExcluded" class="refund-note">不包含餐盒费</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -189,11 +189,14 @@ export default {
|
|
|
if (this.data.boxFee != null) return this.data.boxFee
|
|
|
return Number(this.data.boxPrice || 0) * this.quantity
|
|
|
},
|
|
|
+ containerFeeExcluded() {
|
|
|
+ return this.data.containerFeeExcluded === true
|
|
|
+ },
|
|
|
userPhone() {
|
|
|
return this.data.phone || this.data.maskedPhone || this.data.mobile || ''
|
|
|
},
|
|
|
showActions() {
|
|
|
- return this.data.orderStatusName === '售后申请中' || Number(this.data.fundStatus) === 2
|
|
|
+ return this.data.merchantReviewable === true
|
|
|
}
|
|
|
},
|
|
|
onLoad(query) {
|