MALL:修复营销的商品范围枚举不正确的问题

This commit is contained in:
YunaiV
2024-03-30 15:42:28 +08:00
parent 87d1047fa9
commit 427c2d5d2a
2 changed files with 5 additions and 5 deletions

View File

@ -248,15 +248,15 @@ export const CouponTemplateTakeTypeEnum = {
*/
export const PromotionProductScopeEnum = {
ALL: {
scope: 10,
scope: 1,
name: '通用劵'
},
SPU: {
scope: 20,
scope: 2,
name: '商品劵'
},
CATEGORY: {
scope: 30,
scope: 3,
name: '品类劵'
}
}