加入自定义缴费字段

This commit is contained in:
java110 2021-01-20 12:47:29 +08:00
parent e1b9681f5c
commit e72f8a8b64
2 changed files with 4 additions and 0 deletions

View File

@ -47,6 +47,7 @@
<option v-for="item in payFeeOrderInfo.paymentCycles" :value="item">{{item}}个月
</option>
<option value="-102">自定义周期</option>
<option value="-101">自定义金额</option>
</select>
</div>
</div>

View File

@ -217,6 +217,9 @@
vc.component.payFeeOrderInfo.totalFeePrice = 0.00;
vc.component.payFeeOrderInfo.receivedAmount = '';
return;
}else if('-101' == _cycles){
$that.payFeeOrderInfo.cycles = "101";
return ;
}
let _newCycles = _cycles;
if (_cycles == '') {