Commit e5b8da4b by caoyanzhi

update: 积分抵现策略-比例限制的最大值

parent 391c30b1
......@@ -768,6 +768,10 @@ export default {
that.ruleForm.integralUse.fee = strLength.getCharVal(String(that.ruleForm.integralUse.fee).replace(/[^\.\d]/g, ''), 6);
that.ruleForm.integralUse.integral = strLength.getCharVal(String(that.ruleForm.integralUse.integral).replace(/[^\d]/g, ''), 8);
that.ruleForm.channelList[0].useProportionalRestriction = strLength.getCharVal(String(that.ruleForm.channelList[0].useProportionalRestriction).replace(/[^\d]/g, ''), 3);
if (parseInt(that.ruleForm.channelList[0].useProportionalRestriction) > 100) {
that.ruleForm.channelList[0].useProportionalRestriction = 100;
}
},
formatInputNumBlur() {
let that = this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment