计算的还款方式
Showing
1 changed file
with
2 additions
and
4 deletions
| ... | @@ -39,9 +39,7 @@ | ... | @@ -39,9 +39,7 @@ |
| 39 | </div> | 39 | </div> |
| 40 | <div class="form-group col-sm-3 col-md-2"> | 40 | <div class="form-group col-sm-3 col-md-2"> |
| 41 | <label>还款方式</label> | 41 | <label>还款方式</label> |
| 42 | <input type="text" class="form-control input-text" readonly | 42 | <input type="text" class="form-control input-text" readonly id="repaymentMode" :value="product.repaymentMode"> |
| 43 | value="<?= $this->session->products[0] ? $this->session->products[0]->repaymentMode : ''; ?>" | ||
| 44 | id="repaymentMode"> | ||
| 45 | </div> | 43 | </div> |
| 46 | </div> | 44 | </div> |
| 47 | </div> | 45 | </div> |
| ... | @@ -127,7 +125,7 @@ | ... | @@ -127,7 +125,7 @@ |
| 127 | layer.alert('不能超过最大值' + this.product.loanLimit); | 125 | layer.alert('不能超过最大值' + this.product.loanLimit); |
| 128 | this.borrowAmount = this.product.loanLimit; | 126 | this.borrowAmount = this.product.loanLimit; |
| 129 | } | 127 | } |
| 130 | } | 128 | }, |
| 131 | } | 129 | } |
| 132 | }); | 130 | }); |
| 133 | 131 | ... | ... |
-
Please register or sign in to post a comment