|
@@ -161,7 +161,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.lastUsedWeekNum
|
|
|
+ item.isDelay = (item.expiryDate ? item.expiryDate.substr(0, 10) != '2099-01-01' : false) || (item.cycleFlag == 1)
|
|
|
})
|
|
|
this.setMealData = res.data.customerBundleItemList
|
|
|
} else {
|