Browse Source

fix(清分期限):清分期限

sufan 2 weeks ago
parent
commit
1d1ab30e5a
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/views/capitalManage/components/LettersInfo.vue

+ 3 - 1
src/views/capitalManage/components/LettersInfo.vue

@@ -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
+      }
     }
   },