Merge remote-tracking branch 'origin/develop' into develop
Showing
5 changed files
with
27 additions
and
19 deletions
| ... | @@ -5,7 +5,7 @@ | ... | @@ -5,7 +5,7 @@ |
| 5 | <li><a data-href="<?=site_url('/loan/reminder')?>" data-title="催收管理" href="javascript:void(0)"><i class="Hui-iconfont"></i> 催收管理</a></li> | 5 | <li><a data-href="<?=site_url('/loan/reminder')?>" data-title="催收管理" href="javascript:void(0)"><i class="Hui-iconfont"></i> 催收管理</a></li> |
| 6 | <li><a data-href="<?=site_url('/loan/prosecute')?>" data-title="起诉管理" href="javascript:void(0)"><i class="Hui-iconfont"></i> 起诉管理</a></li> | 6 | <li><a data-href="<?=site_url('/loan/prosecute')?>" data-title="起诉管理" href="javascript:void(0)"><i class="Hui-iconfont"></i> 起诉管理</a></li> |
| 7 | <li><a data-href="<?=site_url('/loan/prosecuted')?>" data-title="已起诉" href="javascript:void(0)"><i class="Hui-iconfont"></i> 已起诉</a></li> | 7 | <li><a data-href="<?=site_url('/loan/prosecuted')?>" data-title="已起诉" href="javascript:void(0)"><i class="Hui-iconfont"></i> 已起诉</a></li> |
| 8 | <li><a data-href="<?=site_url('/loan/database')?>" data-title="数据库" href="javascript:void(0)"><i class="Hui-iconfont"></i> 数据库</a></li> | 8 | <!-- <li><a data-href="--><?//=site_url('/loan/database')?><!--" data-title="数据库" href="javascript:void(0)"><i class="Hui-iconfont"></i> 数据库</a></li>--> |
| 9 | </ul> | 9 | </ul> |
| 10 | </div> | 10 | </div> |
| 11 | </aside> | 11 | </aside> | ... | ... |
| ... | @@ -27,15 +27,15 @@ | ... | @@ -27,15 +27,15 @@ |
| 27 | <table class="table table-border table-bg"> | 27 | <table class="table table-border table-bg"> |
| 28 | <tbody class="text-c"> | 28 | <tbody class="text-c"> |
| 29 | <tr> | 29 | <tr> |
| 30 | <td><i class="Hui-iconfont"></i> 王小赞</td> | 30 | <td><i class="Hui-iconfont"></i> <?=$clientInfoOutputVO->userName?></td> |
| 31 | <td>女</td> | 31 | <td><?=$clientInfoOutputVO->gender?></td> |
| 32 | <td>20岁</td> | 32 | <!-- <td>20岁</td>--> |
| 33 | <td>博士</td> | 33 | <td><?=$clientInfoOutputVO->educationDegree?></td> |
| 34 | <td>已婚</td> | 34 | <td><?=$clientInfoOutputVO->marriageState?></td> |
| 35 | <td>无子女</td> | 35 | <!-- <td>无子女</td>--> |
| 36 | <td><i class="Hui-iconfont"></i> 333333333333333333</td> | 36 | <td><i class="Hui-iconfont"></i> <?=$clientInfoOutputVO->idCard?></td> |
| 37 | <td><i class="Hui-iconfont"></i> ¥3000.00</td> | 37 | <td><i class="Hui-iconfont"></i> ¥<?=$clientInfoOutputVO->monthlyIncome?></td> |
| 38 | <td>14天</td> | 38 | <!-- <td>14天</td>--> |
| 39 | </tr> | 39 | </tr> |
| 40 | </tbody> | 40 | </tbody> |
| 41 | </table> | 41 | </table> | ... | ... |
| ... | @@ -6,7 +6,7 @@ | ... | @@ -6,7 +6,7 @@ |
| 6 | <span>申请信息</span> | 6 | <span>申请信息</span> |
| 7 | <span>资料信息</span> | 7 | <span>资料信息</span> |
| 8 | <span>处理信息</span> | 8 | <span>处理信息</span> |
| 9 | <span>订单进度</span> | 9 | <!-- <span>订单进度</span>--> |
| 10 | </div> | 10 | </div> |
| 11 | 11 | ||
| 12 | <!-- 申请信息 --> | 12 | <!-- 申请信息 --> |
| ... | @@ -49,7 +49,7 @@ | ... | @@ -49,7 +49,7 @@ |
| 49 | </div> | 49 | </div> |
| 50 | <!-- 订单进度 --> | 50 | <!-- 订单进度 --> |
| 51 | <div class="tabCon"> | 51 | <div class="tabCon"> |
| 52 | <?php $this->load->view('work/订单进度'); ?> | 52 | <!-- --><?php //$this->load->view('work/订单进度'); ?> |
| 53 | </div> | 53 | </div> |
| 54 | </div> | 54 | </div> |
| 55 | 55 | ... | ... |
| ... | @@ -286,6 +286,19 @@ | ... | @@ -286,6 +286,19 @@ |
| 286 | <input type="text" class="form-control input-text" | 286 | <input type="text" class="form-control input-text" |
| 287 | value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->unitPhone : '' ?>"> | 287 | value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->unitPhone : '' ?>"> |
| 288 | </div> | 288 | </div> |
| 289 | |||
| 290 | <div class="form-group col-sm-3 col-md-2"> | ||
| 291 | <label>职称类型</label> | ||
| 292 | <span class="form-control select-box"> | ||
| 293 | <select class="select" size="1"> | ||
| 294 | <?php foreach ($this->session->jobTypeEnum as $k => $v): ?> | ||
| 295 | <option <?= $clientUnitOutputVO && $clientUnitOutputVO->jobType == $k ? 'selected' : '' ?> | ||
| 296 | value="<?= $k ?>"><?= $v ?></option> | ||
| 297 | <?php endforeach; ?> | ||
| 298 | </select> | ||
| 299 | </span> | ||
| 300 | </div> | ||
| 301 | |||
| 289 | </div> | 302 | </div> |
| 290 | 303 | ||
| 291 | <div class="row cl"> | 304 | <div class="row cl"> | ... | ... |
| ... | @@ -125,18 +125,13 @@ | ... | @@ -125,18 +125,13 @@ |
| 125 | title: '确认拒绝', | 125 | title: '确认拒绝', |
| 126 | icon: 3 | 126 | icon: 3 |
| 127 | }, function(){ | 127 | }, function(){ |
| 128 | var targetUrl = 'flow/confirm2NextStatus/' + id; | 128 | var targetUrl = 'flow/refuseStatus/' + id; |
| 129 | var data = { | ||
| 130 | "destOrderStatus": 0, | ||
| 131 | "opinion": "", | ||
| 132 | "orderStatus": 1 | ||
| 133 | } | ||
| 134 | $.ajax({ | 129 | $.ajax({ |
| 135 | type: 'put', | 130 | type: 'put', |
| 136 | url: apiBaseUrl + targetUrl, | 131 | url: apiBaseUrl + targetUrl, |
| 137 | cache: false, | 132 | cache: false, |
| 138 | dataType: 'json', | 133 | dataType: 'json', |
| 139 | data: JSON.stringify(data), | 134 | // data: JSON.stringify(data), |
| 140 | contentType: "application/json; charset=UTF-8", | 135 | contentType: "application/json; charset=UTF-8", |
| 141 | success: function (data) { | 136 | success: function (data) { |
| 142 | if (data.msg) { | 137 | if (data.msg) { | ... | ... |
-
Please register or sign in to post a comment