积分问题修复

This commit is contained in:
2025-09-30 17:42:28 +08:00
parent 31e386bd3c
commit b2cb18b114
7 changed files with 141 additions and 135 deletions

View File

@@ -207,10 +207,10 @@ function showDetailHandle(item) {
ruleList.push(otherCouponRule);
}
const shareRuleText = `${ruleList.join('、')}`;
let foods=item.foods;
selectListItemDetails.value = [
`可适用门店:${item.useShops}`,
`可适用商品:${item.foods}`,
`可适用商品:${foods}`,
`可使用类型:${convertValuesToLabels(item.useType)}`,
`可用时间段:${item.useTimeType == 'all' ? '全段时间可用' : `${item.useStartTime} - ${item.useEndTime}`}`,
`限量规则:每人限领${item.getLimit == -10086 ? `无限张` : `${item.getLimit}`},每日最多可使用${item.useLimit == -10086 ? `无限张` : `${item.useLimit}`}`,