promotion:增加满减送活动的前端 50%

This commit is contained in:
YunaiV
2022-11-05 00:14:02 +08:00
parent 0e5b7734ac
commit 74b6ff1eef
2 changed files with 16 additions and 0 deletions

View File

@ -278,3 +278,17 @@ export const PromotionProductScopeEnum = {
name: '指定商品参与'
}
}
/**
* 营销的条件类型枚举
*/
export const PromotionConditionTypeEnum = {
PRICE: {
type: 10,
name: '满 N 元'
},
COUNT: {
type: 20,
name: '满 N 件'
}
}