优化:添加商品时0库存商品无法保存改为可以保存

This commit is contained in:
ZENGlei11350
2023-12-04 13:42:18 +08:00
parent 2f10f0ffc1
commit dee8215da2
2 changed files with 3 additions and 3 deletions

View File

@ -197,7 +197,7 @@ defineOptions({ name: 'ProductSpuBasicInfoForm' })
const ruleConfig: RuleConfig[] = [
{
name: 'stock',
rule: (arg) => arg >= 1,
rule: (arg) => arg >= 0,
message: '商品库存必须大于等于 1 '
},
{
@ -213,7 +213,7 @@ const ruleConfig: RuleConfig[] = [
{
name: 'costPrice',
rule: (arg) => arg >= 0.01,
message: '商品成本价格必须大于等于 0.01 元!!!'
message: '商品成本价格必须大于等于 0.00 元!!!'
}
]