639f19cd by Zelig

图片

1 parent 6dfe3907
...@@ -132,6 +132,8 @@ class Work extends CI_Controller ...@@ -132,6 +132,8 @@ class Work extends CI_Controller
132 */ 132 */
133 public function record($id = null) 133 public function record($id = null)
134 { 134 {
135 $this->load->driver('Order');
136
135 $url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id; 137 $url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
136 $result = file_get_contents($url); 138 $result = file_get_contents($url);
137 $json = json_decode($result); 139 $json = json_decode($result);
...@@ -154,7 +156,8 @@ class Work extends CI_Controller ...@@ -154,7 +156,8 @@ class Work extends CI_Controller
154 'clientContactOutputVOS' => $ret->clientContactOutputVOS, 156 'clientContactOutputVOS' => $ret->clientContactOutputVOS,
155 'applyOrderVO' => $ret->orderVO, 157 'applyOrderVO' => $ret->orderVO,
156 'operatorRecord' => $ret2, 158 'operatorRecord' => $ret2,
157 'id' => $id 159 'id' => $id,
160 'baseType' => $this->order->ordersource->baseType(),
158 ); 161 );
159 162
160 $this->load->view('work/资料/资料补录', $data); 163 $this->load->view('work/资料/资料补录', $data);
...@@ -255,6 +258,7 @@ class Work extends CI_Controller ...@@ -255,6 +258,7 @@ class Work extends CI_Controller
255 } 258 }
256 break; 259 break;
257 case 7: 260 case 7:
261 $data['firstCheck'] = api('order/ordersource/firstCheck');
258 $this->load->view('work/审批/网查筛选', $data); 262 $this->load->view('work/审批/网查筛选', $data);
259 break; 263 break;
260 case 8: 264 case 8:
...@@ -294,6 +298,7 @@ class Work extends CI_Controller ...@@ -294,6 +298,7 @@ class Work extends CI_Controller
294 public function verify($id = null) 298 public function verify($id = null)
295 { 299 {
296 $this->load->driver('flow'); 300 $this->load->driver('flow');
301 $this->load->driver('order');
297 302
298 $url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id; 303 $url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
299 $result = file_get_contents($url); 304 $result = file_get_contents($url);
...@@ -320,6 +325,7 @@ class Work extends CI_Controller ...@@ -320,6 +325,7 @@ class Work extends CI_Controller
320 'plan'=>$ret2, 325 'plan'=>$ret2,
321 'id'=>$id, 326 'id'=>$id,
322 'getLastCheck' => $this->flow->getLastCheck($id), 327 'getLastCheck' => $this->flow->getLastCheck($id),
328 'confirmType' => $this->order->ordersource->confirmType(),
323 ); 329 );
324 330
325 $this->load->view('work/客户确认/客户确认', $data); 331 $this->load->view('work/客户确认/客户确认', $data);
...@@ -434,6 +440,7 @@ class Work extends CI_Controller ...@@ -434,6 +440,7 @@ class Work extends CI_Controller
434 public function inquiry ($id) 440 public function inquiry ($id)
435 { 441 {
436 $this->load->driver('DueDiligence'); 442 $this->load->driver('DueDiligence');
443 $this->load->driver('Order');
437 444
438 $url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id; 445 $url = $this->config->item('apiBaseUrl') . 'order/detail/' . $id;
439 $result = file_get_contents($url); 446 $result = file_get_contents($url);
...@@ -455,6 +462,7 @@ class Work extends CI_Controller ...@@ -455,6 +462,7 @@ class Work extends CI_Controller
455 462
456 'industry' => $this->duediligence->enum->industry(), 463 'industry' => $this->duediligence->enum->industry(),
457 'companyNature' => $this->duediligence->enum->companyNature(), 464 'companyNature' => $this->duediligence->enum->companyNature(),
465 'dueDiligenceType' => $this->order->ordersource->dueDiligenceType(),
458 ); 466 );
459 467
460 $this->load->view('/work/尽调报告/index', $data); 468 $this->load->view('/work/尽调报告/index', $data);
......
...@@ -6,4 +6,16 @@ if(!function_exists('activate')) { ...@@ -6,4 +6,16 @@ if(!function_exists('activate')) {
6 function activate($url) { 6 function activate($url) {
7 return uri_string() == $url; 7 return uri_string() == $url;
8 } 8 }
9 }
...\ No newline at end of file ...\ No newline at end of file
9 }
10
11 if(!function_exists('api')) {
12 function api($url) {
13 $CI = &get_instance();
14 $url = $CI->config->item('apiBaseUrl') . $url;
15 $result = file_get_contents($url);
16 $json = json_decode($result);
17 $ret = $json->data;
18
19 return $ret;
20 }
21 }
......
...@@ -16,4 +16,31 @@ class Order_ordersource extends CI_Driver ...@@ -16,4 +16,31 @@ class Order_ordersource extends CI_Driver
16 16
17 return $ret; 17 return $ret;
18 } 18 }
19
20 public function dueDiligenceType () {
21 $url = $this->CI->config->item('apiBaseUrl') . 'order/ordersource/dueDiligenceType';
22 $result = file_get_contents($url);
23 $json = json_decode($result);
24 $ret = $json->data;
25
26 return $ret;
27 }
28
29 public function baseType () {
30 $url = $this->CI->config->item('apiBaseUrl') . 'order/ordersource/baseType';
31 $result = file_get_contents($url);
32 $json = json_decode($result);
33 $ret = $json->data;
34
35 return $ret;
36 }
37
38 public function confirmType () {
39 $url = $this->CI->config->item('apiBaseUrl') . 'order/ordersource/confirmType';
40 $result = file_get_contents($url);
41 $json = json_decode($result);
42 $ret = $json->data;
43
44 return $ret;
45 }
19 } 46 }
......
...@@ -7,10 +7,10 @@ ...@@ -7,10 +7,10 @@
7 <label>资料上传</label> 7 <label>资料上传</label>
8 <span class="form-control select-box"> 8 <span class="form-control select-box">
9 <select class="select uploader" size="1" id="upload"> 9 <select class="select uploader" size="1" id="upload">
10 <?php foreach ($this->session->sourceBaseType as $k=>$v):?> 10 <?php foreach ($type as $k=>$v):?>
11 <option value="<?=$v->code?>" data-name="<?=$v->desc?>"><?=$v->desc?></option> 11 <option value="<?=$v->code?>" data-name="<?=$v->desc?>"><?=$v->desc?></option>
12 <?php if($v->children && !empty($v->children)):?> 12 <?php if($v->children && !empty($v->children)):?>
13 <?php foreach ($this->session->sourceBaseType as $kk=>$vv):?> 13 <?php foreach ($v->children as $kk=>$vv):?>
14 <option value="<?=$vv->code?>" data-name="<?=$v->desc .'-'.$vv->desc?>">&nbsp;&nbsp;--<?=$vv->desc?></option> 14 <option value="<?=$vv->code?>" data-name="<?=$v->desc .'-'.$vv->desc?>">&nbsp;&nbsp;--<?=$vv->desc?></option>
15 <?php endforeach;?> 15 <?php endforeach;?>
16 <?php endif;?> 16 <?php endif;?>
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
21 <div class="form-group col-sm-3 col-md-2"> 21 <div class="form-group col-sm-3 col-md-2">
22 <label>&nbsp;</label> 22 <label>&nbsp;</label>
23 <div> 23 <div>
24 <label class="filePicker">选择图片</label> 24 <label class="filePicker" url="<?=$url?>">选择图片</label>
25 </div> 25 </div>
26 </div> 26 </div>
27 </div> 27 </div>
......
...@@ -222,4 +222,4 @@ ...@@ -222,4 +222,4 @@
222 </div>--> 222 </div>-->
223 223
224 224
225 </form>
...\ No newline at end of file ...\ No newline at end of file
225 </form>
......
...@@ -29,15 +29,37 @@ ...@@ -29,15 +29,37 @@
29 <button class="btn btn-danger btn-block" onclick="refuse()">拒绝</button> 29 <button class="btn btn-danger btn-block" onclick="refuse()">拒绝</button>
30 </div> 30 </div>
31 <div class="col-sm-2"> 31 <div class="col-sm-2">
32 <button class="btn btn-primary btn-block" onclick="pass()"> 32 <button class="btn btn-primary btn-block" onclick="save()">保存</button>
33 通过
34 </button>
35 </div> 33 </div>
36 </div> 34 </div>
37 35
38 <?php $this->load->view('common/footer'); ?> 36 <?php $this->load->view('common/footer'); ?>
39 37
40 <script> 38 <script>
39 // $('[name="hasBankBlacklist"], [name="hasTradeInto"], [name="hasCreditTypeException"]').on('change', function () {
40 // let pass = true;
41 // $('[name="hasBankBlacklist"], [name="hasTradeInto"], [name="hasCreditTypeException"]').each(function () {
42 // if($(this).val() != 1) {
43 // pass = false;
44 // }
45 // });
46 //
47 // if(pass) {
48 // $('#pass').attr('disabled', false);
49 // $('#pass').removeClass('btn-default').addClass('btn-primary');
50 // } else {
51 // $('#pass').attr('disabled', true);
52 // $('#pass').removeClass('btn-primary').addClass('btn-default');
53 // }
54 // })
55 //
56 // function btnPass(e) {
57 // if($(e).val())
58 //
59 // $('#pass').removeClass('btn-default').addClass('btn-primary');
60 // $('#pass').removeClass('btn-primary').addClass('btn-default');
61 // }
62
41 function refuse() { 63 function refuse() {
42 layer.open({ 64 layer.open({
43 type: 2, 65 type: 2,
...@@ -48,7 +70,7 @@ ...@@ -48,7 +70,7 @@
48 }); 70 });
49 } 71 }
50 72
51 function pass() { 73 function save() {
52 var data = $("#form1").serializeJson(); 74 var data = $("#form1").serializeJson();
53 var url = '<?=site_url('/work/check/7/' . $id);?>'; 75 var url = '<?=site_url('/work/check/7/' . $id);?>';
54 $.ajax({ 76 $.ajax({
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 </span> 13 </span>
14 </div> 14 </div>
15 15
16 <?php $this->load->view('work/图片上传'); ?> 16 <?php $this->load->view('work/图片上传', ['url' => 'order/ordersource/firstcheck/', 'type' => $firstCheck]); ?>
17 17
18 <div class="panel panel-default mb-20"> 18 <div class="panel panel-default mb-20">
19 <div class="panel-body"> 19 <div class="panel-body">
...@@ -51,6 +51,8 @@ ...@@ -51,6 +51,8 @@
51 <script src="https://cdn.bootcss.com/holder/2.9.4/holder.min.js"></script> 51 <script src="https://cdn.bootcss.com/holder/2.9.4/holder.min.js"></script>
52 52
53 <script> 53 <script>
54 uploadList();
55
54 function refuse() { 56 function refuse() {
55 layer.open({ 57 layer.open({
56 type: 2, 58 type: 2,
......
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
73 </table> 73 </table>
74 </div> 74 </div>
75 </div> 75 </div>
76 <?php $this->load->view('work/图片上传') ?> 76 <?php $this->load->view('work/图片上传', ['url' => 'order/ordersource/confirm/', 'type' => $confirmType]) ?>
77 </div> 77 </div>
78 78
79 <div class="row cl pb-20 col-sm-12"> 79 <div class="row cl pb-20 col-sm-12">
...@@ -88,6 +88,8 @@ ...@@ -88,6 +88,8 @@
88 <?php $this->load->view('common/footer'); ?> 88 <?php $this->load->view('common/footer'); ?>
89 89
90 <script> 90 <script>
91 uploadList();
92
91 function verify() { 93 function verify() {
92 layer.confirm('通过之后, 将立即进入放款阶段', { 94 layer.confirm('通过之后, 将立即进入放款阶段', {
93 btn: ['确认','取消'], 95 btn: ['确认','取消'],
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
19 </div> 19 </div>
20 20
21 <div class="tabCon"> 21 <div class="tabCon">
22 <?php $this->load->view('work/图片上传'); ?> 22 <?php $this->load->view('work/图片上传', ['url' => '/order/ordersource/duediligence/', 'type' => $dueDiligenceType]) ?>
23 </div> 23 </div>
24 24
25 </div> 25 </div>
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
29 <button class="btn btn-warning btn-block">退回订单</button> 29 <button class="btn btn-warning btn-block">退回订单</button>
30 </div> 30 </div>
31 <div class="col-sm-2"> 31 <div class="col-sm-2">
32 <button class="btn btn-primary btn-block" onclick="submit()">提交尽调</button> 32 <button class="btn btn-primary btn-block" onclick="submit()">保存</button>
33 </div> 33 </div>
34 </div> 34 </div>
35 35
......
...@@ -49,20 +49,6 @@ ...@@ -49,20 +49,6 @@
49 }, 49 },
50 { 50 {
51 data: "id", render: function (data, type, full) { 51 data: "id", render: function (data, type, full) {
52 /*<li><a href="#">退至【资料补录】阶段</a></li>
53 <li><a href="#">退至【审批-初审】阶段</a></li>
54 <li><a href="#">退至【审批-复审】阶段</a></li>
55 <li><a href="#">退至【审批-终审】阶段</a></li>
56 <li><a href="#">退至【尽调】阶段</a></li>
57 <li><a href="#">退至【客户确认】阶段</a></li>
58 <li><a href="#">退至【等待放款-移交】阶段</a></li>*/
59 var subMenu = '';
60 $('[name=status]').find('option').each(function () {
61 if (!$(this).val()) {
62 return;
63 }
64 subMenu += '<li><a href="javascript:;" onclick="rollback(' + data + ',' + $(this).val() + ',' + full.status + ')">退至 ' + $(this).text() + '阶段</a></li>';
65 });
66 return '<span class="dropDown dropDown_hover">\ 52 return '<span class="dropDown dropDown_hover">\
67 <button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>\ 53 <button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>\
68 <ul class="dropDown-menu menu radius box-shadow">\ 54 <ul class="dropDown-menu menu radius box-shadow">\
...@@ -71,8 +57,14 @@ ...@@ -71,8 +57,14 @@
71 <li><a href="javascript:;" onclick="rollback(' + data + ')">驳回</a></li>\ 57 <li><a href="javascript:;" onclick="rollback(' + data + ')">驳回</a></li>\
72 <li>\ 58 <li>\
73 <a href="#">退回订单<i class="arrow Hui-iconfont">&#xe6d7;</i></a>\ 59 <a href="#">退回订单<i class="arrow Hui-iconfont">&#xe6d7;</i></a>\
74 <ul class="menu">' + subMenu + '\ 60 <ul class="menu">\
75 </ul>\ 61 <li><a href="javascript:;" onclick="rollback(2,2,4)">退至 待补录阶段</a></li>\
62 <li class=""><a href="javascript:;" onclick="rollback(2,4,4)">退至 待初审阶段</a></li>\
63 <li class=""><a href="javascript:;" onclick="rollback(2,5,4)">退至 待复审阶段</a></li>\
64 <li><a href="javascript:;" onclick="rollback(2,6,4)">退至 待终审阶段</a></li>\
65 <li><a href="javascript:;" onclick="rollback(2,8,4)">退至 待客户确认阶段</a></li>\
66 <li><a href="javascript:;" onclick="rollback(2,10,4)">退至 待确认放款阶段</a></li>\
67 </ul>\
76 </li>\ 68 </li>\
77 <li><a href="javascript:;" onclick="cancel(' + data + ')">客户取消</a></li>\ 69 <li><a href="javascript:;" onclick="cancel(' + data + ')">客户取消</a></li>\
78 <li><a href="javascript:;" onclick="layer_show(\'订单详情\', \'/index.php/work/detail/' + data + '?tab=2\')">处理记录</a></li>\ 70 <li><a href="javascript:;" onclick="layer_show(\'订单详情\', \'/index.php/work/detail/' + data + '?tab=2\')">处理记录</a></li>\
......
...@@ -50,13 +50,6 @@ ...@@ -50,13 +50,6 @@
50 }, 50 },
51 { 51 {
52 data: "id", render: function (data, type, full) { 52 data: "id", render: function (data, type, full) {
53 var subMenu = '';
54 $('[name=status]').find('option').each(function () {
55 if (!$(this).val()) {
56 return;
57 }
58 subMenu += '<li><a href="javascript:;" onclick="rollback(' + data + ',' + $(this).val() + ',' + full.status + ')">退至 ' + $(this).text() + '阶段</a></li>';
59 });
60 return '<span class="dropDown dropDown_hover">\ 53 return '<span class="dropDown dropDown_hover">\
61 <button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>\ 54 <button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>\
62 <ul class="dropDown-menu menu radius box-shadow">\ 55 <ul class="dropDown-menu menu radius box-shadow">\
...@@ -64,8 +57,14 @@ ...@@ -64,8 +57,14 @@
64 <li><a href="javascript:;" onclick="loan('+data+')">线下已放款</a></li>\ 57 <li><a href="javascript:;" onclick="loan('+data+')">线下已放款</a></li>\
65 <li>\ 58 <li>\
66 <a href="#">退回订单<i class="arrow Hui-iconfont">&#xe6d7;</i></a>\ 59 <a href="#">退回订单<i class="arrow Hui-iconfont">&#xe6d7;</i></a>\
67 <ul class="menu">' + subMenu + '\ 60 <ul class="menu">\
68 </ul>\ 61 <li><a href="javascript:;" onclick="rollback(2,2,4)">退至 待补录阶段</a></li>\
62 <li class=""><a href="javascript:;" onclick="rollback(2,4,4)">退至 待初审阶段</a></li>\
63 <li class=""><a href="javascript:;" onclick="rollback(2,5,4)">退至 待复审阶段</a></li>\
64 <li><a href="javascript:;" onclick="rollback(2,6,4)">退至 待终审阶段</a></li>\
65 <li><a href="javascript:;" onclick="rollback(2,8,4)">退至 待客户确认阶段</a></li>\
66 <li><a href="javascript:;" onclick="rollback(2,10,4)">退至 待确认放款阶段</a></li>\
67 </ul>\
69 </li>\ 68 </li>\
70 <li><a href="javascript:;" onclick="cancel('+data+')">客户取消</a></li>\ 69 <li><a href="javascript:;" onclick="cancel('+data+')">客户取消</a></li>\
71 <li><a href="javascript:;" onclick="layer_show(\'订单详情\', \'/index.php/work/detail/'+data+'?tab=2\')">处理记录</a></li>\ 70 <li><a href="javascript:;" onclick="layer_show(\'订单详情\', \'/index.php/work/detail/'+data+'?tab=2\')">处理记录</a></li>\
......
...@@ -49,13 +49,6 @@ ...@@ -49,13 +49,6 @@
49 }, 49 },
50 { 50 {
51 data: "id", render: function (data, type, full) { 51 data: "id", render: function (data, type, full) {
52 var subMenu = '';
53 $('[name=status]').find('option').each(function () {
54 if (!$(this).val()) {
55 return;
56 }
57 subMenu += '<li><a href="javascript:;" onclick="rollback(' + data + ',' + $(this).val() + ',' + full.status + ')">退至 ' + $(this).text() + '阶段</a></li>';
58 });
59 return '<span class="dropDown dropDown_hover">\ 52 return '<span class="dropDown dropDown_hover">\
60 <button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>\ 53 <button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>\
61 <ul class="dropDown-menu menu radius box-shadow">\ 54 <ul class="dropDown-menu menu radius box-shadow">\
...@@ -63,8 +56,14 @@ ...@@ -63,8 +56,14 @@
63 <li><a href="javascript:;" onclick="creatIframe(\'/index.php/work/move/'+data+'\', \'移交资料\')">移交资料</a></li>\ 56 <li><a href="javascript:;" onclick="creatIframe(\'/index.php/work/move/'+data+'\', \'移交资料\')">移交资料</a></li>\
64 <li>\ 57 <li>\
65 <a href="#">退回订单<i class="arrow Hui-iconfont">&#xe6d7;</i></a>\ 58 <a href="#">退回订单<i class="arrow Hui-iconfont">&#xe6d7;</i></a>\
66 <ul class="menu">'+subMenu+'\ 59 <ul class="menu">\
67 </ul>\ 60 <li><a href="javascript:;" onclick="rollback(2,2,4)">退至 待补录阶段</a></li>\
61 <li class=""><a href="javascript:;" onclick="rollback(2,4,4)">退至 待初审阶段</a></li>\
62 <li class=""><a href="javascript:;" onclick="rollback(2,5,4)">退至 待复审阶段</a></li>\
63 <li><a href="javascript:;" onclick="rollback(2,6,4)">退至 待终审阶段</a></li>\
64 <li><a href="javascript:;" onclick="rollback(2,8,4)">退至 待客户确认阶段</a></li>\
65 <li><a href="javascript:;" onclick="rollback(2,10,4)">退至 待确认放款阶段</a></li>\
66 </ul>\
68 </li>\ 67 </li>\
69 <li><a href="javascript:;" onclick="cancel('+data+')">客户取消</a></li>\ 68 <li><a href="javascript:;" onclick="cancel('+data+')">客户取消</a></li>\
70 <li><a href="javascript:;" onclick="layer_show(\'订单详情\', \'/index.php/work/detail/'+data+'?tab=2\')">处理记录</a></li>\ 69 <li><a href="javascript:;" onclick="layer_show(\'订单详情\', \'/index.php/work/detail/'+data+'?tab=2\')">处理记录</a></li>\
......
...@@ -408,7 +408,7 @@ ...@@ -408,7 +408,7 @@
408 </div> 408 </div>
409 <!-- 资料信息 --> 409 <!-- 资料信息 -->
410 <div class="tabCon"> 410 <div class="tabCon">
411 <?php $this->load->view('work/图片上传'); ?> 411 <?php $this->load->view('work/图片上传', ['url' => 'order/ordersource/base/', 'type' => $baseType]); ?>
412 412
413 <div class="col-sm-offset-4 col-sm-4 pb-20"> 413 <div class="col-sm-offset-4 col-sm-4 pb-20">
414 <button class="btn btn-primary btn-block" type="button" onclick="save()">提交</button> 414 <button class="btn btn-primary btn-block" type="button" onclick="save()">提交</button>
......
...@@ -33,7 +33,8 @@ jQuery(function() { ...@@ -33,7 +33,8 @@ jQuery(function() {
33 33
34 // 当有文件添加进来的时候 34 // 当有文件添加进来的时候
35 uploader.on('fileQueued', function(file) { 35 uploader.on('fileQueued', function(file) {
36 // var $id = $('select.uploader').val(); 36 uploader.options.server = 'http://151.28ms.com:8088/order/ordersource/baseUpload?sourceType=' + $('#upload').val() + '&orderId=' + $('#orderId').val();
37
37 var $id = $('select.uploader').val(); 38 var $id = $('select.uploader').val();
38 var $tr = $('tr[data-id='+$id+']'); 39 var $tr = $('tr[data-id='+$id+']');
39 40
...@@ -134,7 +135,8 @@ jQuery(function() { ...@@ -134,7 +135,8 @@ jQuery(function() {
134 }); 135 });
135 136
136 window.uploadList = function () { 137 window.uploadList = function () {
137 var targetUrl = 'order/ordersource/base/' + $('#orderId').val(); 138 url = $('.filePicker').attr('url') ? $('.filePicker').attr('url') : 'order/ordersource/base/';
139 var targetUrl = url + $('#orderId').val();
138 140
139 $.ajax({ 141 $.ajax({
140 type: 'get', 142 type: 'get',
...@@ -187,7 +189,6 @@ window.uploadList = function () { ...@@ -187,7 +189,6 @@ window.uploadList = function () {
187 function removeFile( file ) { 189 function removeFile( file ) {
188 var $li = $('#'+file.id); 190 var $li = $('#'+file.id);
189 var id = $('#'+file.id).data('id'); 191 var id = $('#'+file.id).data('id');
190 console.log();
191 192
192 var targetUrl = 'order/ordersource/delete/' + id; 193 var targetUrl = 'order/ordersource/delete/' + id;
193 194
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!