马上尽调
Showing
3 changed files
with
43 additions
and
1 deletions
| ... | @@ -343,4 +343,9 @@ class Work extends CI_Controller | ... | @@ -343,4 +343,9 @@ class Work extends CI_Controller |
| 343 | $data['draw'] = $draw + 1; | 343 | $data['draw'] = $draw + 1; |
| 344 | $this->output->set_content_type('application/json')->set_output(json_encode($data)); | 344 | $this->output->set_content_type('application/json')->set_output(json_encode($data)); |
| 345 | } | 345 | } |
| 346 | |||
| 347 | public function inquiry ($id) | ||
| 348 | { | ||
| 349 | $this->load->view('/work/尽调报告/index', compact('id')); | ||
| 350 | } | ||
| 346 | } | 351 | } | ... | ... |
application/views/work/尽调报告/index.php
0 → 100644
| 1 | <?php $this->load->view('common/header'); ?> | ||
| 2 | |||
| 3 | <body> | ||
| 4 | <div id="tab" class="HuiTab"> | ||
| 5 | <div class="tabBar clearfix" style="background-color:#e8e8e8"> | ||
| 6 | <span>尽调报告</span> | ||
| 7 | <span>资料清单</span> | ||
| 8 | </div> | ||
| 9 | |||
| 10 | <div class="tabCon"> | ||
| 11 | <?php $this->load->view('work/尽调报告/打工'); ?> | ||
| 12 | <!-- <?php $this->load->view('work/尽调报告/法人'); ?> --> | ||
| 13 | </div> | ||
| 14 | |||
| 15 | <div class="tabCon"> | ||
| 16 | <?php $this->load->view('work/图片上传'); ?> | ||
| 17 | </div> | ||
| 18 | |||
| 19 | </div> | ||
| 20 | |||
| 21 | <?php $this->load->view('common/footer'); ?> | ||
| 22 | |||
| 23 | <script> | ||
| 24 | function getQueryString(name) { | ||
| 25 | var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); | ||
| 26 | var r = window.location.search.substr(1).match(reg); | ||
| 27 | if (r != null) return unescape(r[2]); return null; | ||
| 28 | } | ||
| 29 | |||
| 30 | var index = getQueryString('tab'); | ||
| 31 | |||
| 32 | $("#tab").Huitab({index: index}); | ||
| 33 | |||
| 34 | uploadList(); | ||
| 35 | </script> | ||
| 36 | </body> | ||
| 37 | </html> |
| ... | @@ -67,7 +67,7 @@ | ... | @@ -67,7 +67,7 @@ |
| 67 | <button class="btn radius size-M">请选择 <i class="Hui-iconfont"></i></button>\ | 67 | <button class="btn radius size-M">请选择 <i class="Hui-iconfont"></i></button>\ |
| 68 | <ul class="dropDown-menu menu radius box-shadow">\ | 68 | <ul class="dropDown-menu menu radius box-shadow">\ |
| 69 | <li><a href="javascript:;" onclick="layer_show(\'订单详情\', \'/index.php/work/detail/' + data + '?tab=0\')">查看详细</a></li>\ | 69 | <li><a href="javascript:;" onclick="layer_show(\'订单详情\', \'/index.php/work/detail/' + data + '?tab=0\')">查看详细</a></li>\ |
| 70 | <li><a href="javascript:;" onclick="layer_show(\'资料补录\', \'/index.php/work/record/' + data + '\')">马上尽调</a></li>\ | 70 | <li><a href="javascript:;" onclick="layer_show(\'马上尽调\', \'/index.php/work/inquiry/' + data + '\')">马上尽调</a></li>\ |
| 71 | <li><a href="javascript:;" onclick="rollback(' + data + ')">驳回</a></li>\ | 71 | <li><a href="javascript:;" onclick="rollback(' + data + ')">驳回</a></li>\ |
| 72 | <li>\ | 72 | <li>\ |
| 73 | <a href="#">退回订单<i class="arrow Hui-iconfont"></i></a>\ | 73 | <a href="#">退回订单<i class="arrow Hui-iconfont"></i></a>\ | ... | ... |
-
Please register or sign in to post a comment