init
Showing
1 changed file
with
8 additions
and
4 deletions
| ... | @@ -56,16 +56,16 @@ | ... | @@ -56,16 +56,16 @@ |
| 56 | <input type="text" class="form-control input-text table_search" value="" placeholder="手机号" column="5" name="phoneNumber"> | 56 | <input type="text" class="form-control input-text table_search" value="" placeholder="手机号" column="5" name="phoneNumber"> |
| 57 | </div> | 57 | </div> |
| 58 | <div class="col-xs-2"> | 58 | <div class="col-xs-2"> |
| 59 | <input type="text" class="form-control input-text table_search" value="" placeholder="最小申请金额" column="6" name="loanMinMoney"> | 59 | <input type="text" class="form-control input-text" value="" id="loanMinMoney" placeholder="最小申请金额" name="loanMinMoney"> |
| 60 | </div> | 60 | </div> |
| 61 | <div class="col-xs-2"> | 61 | <div class="col-xs-2"> |
| 62 | <input type="text" class="form-control input-text table_search" value="" placeholder="最大申请金额" column="7" name="loanMaxMoney"> | 62 | <input type="text" class="form-control input-text table_search" id="loanMaxMoney" value="" placeholder="最大申请金额" name="loanMaxMoney"> |
| 63 | </div> | 63 | </div> |
| 64 | <div class="col-xs-2"> | 64 | <div class="col-xs-2"> |
| 65 | <input type="text" class="form-control input-text table_search" value="" placeholder="最小审批金额" column="8" name="ratifyMinMoney"> | 65 | <input type="text" class="form-control input-text table_search" id="ratifyMinMoney" value="" placeholder="最小审批金额" name="ratifyMinMoney"> |
| 66 | </div> | 66 | </div> |
| 67 | <div class="col-xs-2"> | 67 | <div class="col-xs-2"> |
| 68 | <input type="text" class="form-control input-text table_search" value="" placeholder="最大审批金额" column="9" name="ratifyMaxMoney"> | 68 | <input type="text" class="form-control input-text table_search" id="ratifyMaxMoney" value="" placeholder="最大审批金额" name="ratifyMaxMoney"> |
| 69 | </div> | 69 | </div> |
| 70 | </div> | 70 | </div> |
| 71 | 71 | ||
| ... | @@ -269,6 +269,10 @@ | ... | @@ -269,6 +269,10 @@ |
| 269 | $('#table').DataTable().draw(); | 269 | $('#table').DataTable().draw(); |
| 270 | }); | 270 | }); |
| 271 | 271 | ||
| 272 | $('#loanMinMoney, #loanMaxMoney,#ratifyMinMoney, #ratifyMaxMoney').on('keyup', function () { | ||
| 273 | $('#table').DataTable().draw(); | ||
| 274 | }); | ||
| 275 | |||
| 272 | function resetHandler() { | 276 | function resetHandler() { |
| 273 | $('#table').DataTable().columns().search("").draw(); | 277 | $('#table').DataTable().columns().search("").draw(); |
| 274 | } | 278 | } | ... | ... |
-
Please register or sign in to post a comment