소스 검색

fix:额度支用bug修复

jiand 3 달 전
부모
커밋
202cb0fc68
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      src/views/financingManage/limitExpenditure/components/FinancingInfo.vue

+ 3 - 3
src/views/financingManage/limitExpenditure/components/FinancingInfo.vue

@@ -231,7 +231,7 @@ export default {
       default: false
     },
     detailsInfo: {
-      type: Object,
+      type: Object,  
       default: () => {}
     },
     endDate: {
@@ -441,9 +441,9 @@ export default {
       const { repaymentAdjustment, startingDate, interestCalculate } = this.ruleForm
       if (repaymentAdjustment === 'fixed_repayment_date') {
         if (interestCalculate) {
-          this.ruleForm.financingPeriod = startAndEndValue(startingDate, this.endDate)
+          this.ruleForm.financingPeriod = startAndEndValue(startingDate, this.endDate) + 1
         } else {
-          this.ruleForm.financingPeriod = startAndEndValue(startingDate, this.endDate) - 1
+          this.ruleForm.financingPeriod = startAndEndValue(startingDate, this.endDate)
         }
       }
     },