init
Showing
1 changed file
with
2 additions
and
0 deletions
| ... | @@ -89,6 +89,7 @@ | ... | @@ -89,6 +89,7 @@ |
| 89 | <div class="form-group col-sm-3 col-md-1"> | 89 | <div class="form-group col-sm-3 col-md-1"> |
| 90 | <label>借款利率</label> | 90 | <label>借款利率</label> |
| 91 | <input type="text" class="form-control input-text" name="annualInterestRate" value=""> | 91 | <input type="text" class="form-control input-text" name="annualInterestRate" value=""> |
| 92 | <span class="glyphicon form-control-feedback">%</span> | ||
| 92 | </div> | 93 | </div> |
| 93 | <div class="form-group col-sm-4 col-md-2"> | 94 | <div class="form-group col-sm-4 col-md-2"> |
| 94 | <label>每月还款金额</label> | 95 | <label>每月还款金额</label> |
| ... | @@ -149,6 +150,7 @@ | ... | @@ -149,6 +150,7 @@ |
| 149 | } else if (orderStatus == 6) { | 150 | } else if (orderStatus == 6) { |
| 150 | url = 'flow/saveLastCheck'; | 151 | url = 'flow/saveLastCheck'; |
| 151 | } | 152 | } |
| 153 | data.annualInterestRate = parseFloat(data.annualInterestRate) /100; | ||
| 152 | $.ajax({ | 154 | $.ajax({ |
| 153 | type: 'post', | 155 | type: 'post', |
| 154 | url: apiBaseUrl + url, | 156 | url: apiBaseUrl + url, | ... | ... |
-
Please register or sign in to post a comment