4b3adfde by yangjianbin

init

1 parent 23fa59fe
......@@ -191,6 +191,13 @@ class Work extends CI_Controller
if ($ret2) {
$credit = $ret2;
}
var_dump($credit);exit;
$url3 = $this->config->item('apiBaseUrl') . 'dueDiligence/' . $id;
$result3 = file_get_contents($url3);
$json3 = json_decode($result3);
$dueDiligence = $json3->data;
$data = array(
'clientInfoOutputVO' => $ret->clientInfoOutputVO,
'clientUnitOutputVO' => $ret->clientUnitOutputVO,
......@@ -199,6 +206,8 @@ class Work extends CI_Controller
'credit'=> $credit,
'id' => $id
);
array_merge($data, $dueDiligence);
}
switch ($state) {
......
......@@ -4,7 +4,7 @@
<div class="row cl">
<div class="form-group col-sm-3 col-md-2">
<label>姓名</label>
<input type="text" class="form-control input-text" value="张三">
<input type="text" class="form-control input-text" value="">
</div>
<div class="form-group col-sm-3 col-md-2">
<label>身份证</label>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!