@@ -247,7 +247,9 @@ export default {
},
'ruleForm.financingTerm'(newV) {
const val = newV * 1 - 30 + 1
- this.ruleForm.clearanceTerm = val < 0 ? 0 : val
+ if (!this.isM3A) {
+ this.ruleForm.clearanceTerm = val < 0 ? 0 : val
+ }
}