Sfoglia il codice sorgente

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

sufan 2 settimane fa
parent
commit
1d1ab30e5a
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  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
+      }
     }
   },