|
@@ -43,7 +43,7 @@
|
|
|
<a-row :gutter="20" v-if="detailsData">
|
|
|
<a-col :span="8" class="item-cont">
|
|
|
<p class="item-label">套餐价格:</p>
|
|
|
- <p class="item-main">{{ detailsData.orderBundle.totalAmount ? detailsData.orderBundle.totalAmount + '元' : '--' }}</p>
|
|
|
+ <p class="item-main">{{ detailsData.orderBundle.totalAmount ? detailsData.orderBundle.totalAmount + '元' : 0 }}</p>
|
|
|
</a-col>
|
|
|
<a-col :span="8" class="item-cont">
|
|
|
<p class="item-label">销售人员:</p>
|
|
@@ -51,7 +51,7 @@
|
|
|
</a-col>
|
|
|
<a-col :span="8" class="item-cont">
|
|
|
<p class="item-label">收款金额:</p>
|
|
|
- <p class="item-main">{{ detailsData.orderBundle.payedAmount ? detailsData.orderBundle.payedAmount + '元' : '--' }}</p>
|
|
|
+ <p class="item-main">{{ detailsData.orderBundle.payedAmount ? detailsData.orderBundle.payedAmount + '元' : 0 }}</p>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
<a-row :gutter="20" v-if="detailsData">
|
|
@@ -170,7 +170,7 @@ export default {
|
|
|
if (res.data && res.data.customerBundleItemList && res.data.customerBundleItemList.length > 0) {
|
|
|
res.data.customerBundleItemList.map((item, index) => {
|
|
|
item.no = index + 1
|
|
|
- item.isDelay = (item.expiryDate ? item.expiryDate.substr(0, 10) != '2099-01-01' : false) && (item.cycleFlag == 0) && (res.data.orderBundle.orderFlag != 'RUND')
|
|
|
+ item.isDelay = (item.expiryDate ? item.expiryDate.substr(0, 10) != '2099-01-01' : false) && (item.cycleFlag == 0)
|
|
|
})
|
|
|
this.setMealData = res.data.customerBundleItemList
|
|
|
} else {
|