2 Commits

Author SHA1 Message Date
xiaozhiyong
479879ef38 Merge branch 'master' of http://121.196.213.68:3000/xiaozhiyong/refinery-admin 2023-03-09 11:52:00 +08:00
xiaozhiyong
a28edee556 更新 2023-03-09 11:51:18 +08:00

View File

@@ -47,7 +47,7 @@ export default {
};
let validatorSalePrice2company = (rule, value, callback) => {
if (!value || !+value) return callback("企业销售价不能为0或空");
if (value < this.form.floorPrice)
if (+value < this.form.floorPrice)
return callback("企业销售价不能低于成本价");
callback();
};