|
@@ -365,7 +365,6 @@ export default {
|
|
|
this.getBusinessTypeInfoData()
|
|
|
}, 500)
|
|
|
})
|
|
|
-
|
|
|
}
|
|
|
},
|
|
|
immediate: true,
|
|
@@ -441,9 +440,9 @@ export default {
|
|
|
const { repaymentAdjustment, startingDate, interestCalculate } = this.ruleForm
|
|
|
if (repaymentAdjustment === 'fixed_repayment_date') {
|
|
|
if (interestCalculate) {
|
|
|
- this.ruleForm.financingPeriod = startAndEndValue(startingDate, this.endDate) + 1
|
|
|
+ this.ruleForm.financingPeriod = startAndEndValue(`${this.endDate} 00:00:00`, `${startingDate} 23:59:59`) + 1
|
|
|
} else {
|
|
|
- this.ruleForm.financingPeriod = startAndEndValue(startingDate, this.endDate)
|
|
|
+ this.ruleForm.financingPeriod = startAndEndValue(`${this.endDate} 00:00:00`, `${startingDate} 23:59:59`)
|
|
|
}
|
|
|
}
|
|
|
},
|