Compare commits

...

2 Commits

Author SHA1 Message Date
java110
04482d7c2d
加入等于
Signed-off-by: java110 <928255095@qq.com>
2024-12-05 08:08:33 +00:00
java110
92f158e3f5
手机端缴费月份太少问题
Signed-off-by: java110 <928255095@qq.com>
2024-12-05 08:01:38 +00:00

View File

@ -262,8 +262,16 @@
this.amountCount = this.receivableAmount;
this.payOnline = _fee.payOnline;
if (this.feeFlag != '2006012') {
this.paymentCycle = _fee.paymentCycle;
for (let _index = 1; _index < 7; _index++) {
let _maxCycle = 7;
if(this.paymentCycle <= 6){
_maxCycle = 18
}
if(this.paymentCycle < 12 && this.paymentCycle > 6){
_maxCycle = 12
}
for (let _index = 1; _index <= _maxCycle; _index++) {
this.feeMonthList.push(_index * this.paymentCycle + '个月')
}
this.feeMonthName = this.paymentCycle + '个月';