2 Commits

Author SHA1 Message Date
xiaozhiyong
d4f33ff63c Merge branch 'master' of http://121.196.213.68:3000/xiaozhiyong/refinery-admin 2023-03-16 15:44:52 +08:00
xiaozhiyong
ed47372ad5 更新 2023-03-16 15:44:44 +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();
};