init
Showing
2 changed files
with
5 additions
and
2 deletions
| ... | @@ -16,7 +16,10 @@ class User extends CI_Controller { | ... | @@ -16,7 +16,10 @@ class User extends CI_Controller { |
| 16 | $res = json_decode(file_get_contents($this->config->item('apiBaseUrl') . 'client/client/' . $id)); | 16 | $res = json_decode(file_get_contents($this->config->item('apiBaseUrl') . 'client/client/' . $id)); |
| 17 | $data = $res->data; | 17 | $data = $res->data; |
| 18 | $arr = array( | 18 | $arr = array( |
| 19 | 'data'=>$data | 19 | 'clientInfoOutputVO'=>$data->clientInfoOutputVO, |
| 20 | 'clientUnitOutputVO'=>$data->clientUnitOutputVO, | ||
| 21 | 'clientContactOutputVOS'=>$data->clientContactOutputVOS, | ||
| 22 | 'applyOrderVO'=>applyOrderVO | ||
| 20 | ); | 23 | ); |
| 21 | switch ($state) { | 24 | switch ($state) { |
| 22 | case '1': | 25 | case '1': | ... | ... |
| ... | @@ -4,7 +4,7 @@ | ... | @@ -4,7 +4,7 @@ |
| 4 | <div class="row cl"> | 4 | <div class="row cl"> |
| 5 | <div class="form-group col-sm-3 col-md-2"> | 5 | <div class="form-group col-sm-3 col-md-2"> |
| 6 | <label>姓名</label> | 6 | <label>姓名</label> |
| 7 | <input type="text" class="form-control input-text" value="张三"> | 7 | <input type="text" class="form-control input-text" value="<?=$clientInfoOutputVO->userName?>"> |
| 8 | </div> | 8 | </div> |
| 9 | <div class="form-group col-sm-3 col-md-2"> | 9 | <div class="form-group col-sm-3 col-md-2"> |
| 10 | <label>性别</label> | 10 | <label>性别</label> | ... | ... |
-
Please register or sign in to post a comment