d2ba4956 by yangjianbin

init

1 parent bf1cf764
...@@ -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>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!