6c6835b1 by yangjianbin

init

1 parent 1d27e9b4
...@@ -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,
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!