init
Showing
2 changed files
with
2 additions
and
2 deletions
| ... | @@ -99,7 +99,7 @@ class Work extends CI_Controller | ... | @@ -99,7 +99,7 @@ class Work extends CI_Controller |
| 99 | $result = file_get_contents($url, false, $context); | 99 | $result = file_get_contents($url, false, $context); |
| 100 | $json = json_decode($result); | 100 | $json = json_decode($result); |
| 101 | $ret = $json->data; | 101 | $ret = $json->data; |
| 102 | var_dump($ret);exit; | 102 | // var_dump($ret);exit; |
| 103 | $data = array( | 103 | $data = array( |
| 104 | 'detail'=>$ret | 104 | 'detail'=>$ret |
| 105 | ); | 105 | ); | ... | ... |
| ... | @@ -43,7 +43,7 @@ | ... | @@ -43,7 +43,7 @@ |
| 43 | </div> | 43 | </div> |
| 44 | <div class="form-group col-sm-3 col-md-2"> | 44 | <div class="form-group col-sm-3 col-md-2"> |
| 45 | <label>身份证</label> | 45 | <label>身份证</label> |
| 46 | <input type="text" class="form-control input-text" value="<?=$detail->clientInfoOutputVO->idCard?>"> | 46 | <input type="text" class="form-control input-text" value="<?=$detail->clientInfoOutputVO ? $detail->clientInfoOutputVO->idCard : ''?>"> |
| 47 | </div> | 47 | </div> |
| 48 | </div> | 48 | </div> |
| 49 | 49 | ... | ... |
-
Please register or sign in to post a comment