mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-06-12 10:00:57 +08:00
Compare commits
2 Commits
97a82f9977
...
04482d7c2d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
04482d7c2d | ||
|
|
92f158e3f5 |
@ -262,8 +262,16 @@
|
|||||||
this.amountCount = this.receivableAmount;
|
this.amountCount = this.receivableAmount;
|
||||||
this.payOnline = _fee.payOnline;
|
this.payOnline = _fee.payOnline;
|
||||||
if (this.feeFlag != '2006012') {
|
if (this.feeFlag != '2006012') {
|
||||||
|
|
||||||
this.paymentCycle = _fee.paymentCycle;
|
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.feeMonthList.push(_index * this.paymentCycle + '个月')
|
||||||
}
|
}
|
||||||
this.feeMonthName = this.paymentCycle + '个月';
|
this.feeMonthName = this.paymentCycle + '个月';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user