init
Showing
2 changed files
with
6 additions
and
6 deletions
| ... | @@ -154,7 +154,7 @@ class Work extends CI_Controller | ... | @@ -154,7 +154,7 @@ class Work extends CI_Controller |
| 154 | 'applyOrderVO'=>$ret->applyOrderVO, | 154 | 'applyOrderVO'=>$ret->applyOrderVO, |
| 155 | 'operatorRecord'=>$ret2 | 155 | 'operatorRecord'=>$ret2 |
| 156 | ); | 156 | ); |
| 157 | var_dump($data);exit; | 157 | // var_dump($data);exit; |
| 158 | $this->load->view('work/资料/资料补录', $data); | 158 | $this->load->view('work/资料/资料补录', $data); |
| 159 | } | 159 | } |
| 160 | 160 | ... | ... |
| ... | @@ -214,11 +214,11 @@ | ... | @@ -214,11 +214,11 @@ |
| 214 | <div class="row cl"> | 214 | <div class="row cl"> |
| 215 | <div class="form-group col-sm-3 col-md-2"> | 215 | <div class="form-group col-sm-3 col-md-2"> |
| 216 | <label>单位名称</label> | 216 | <label>单位名称</label> |
| 217 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->unitName?>"> | 217 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->unitName : ''?>"> |
| 218 | </div> | 218 | </div> |
| 219 | <div class="form-group col-sm-3 col-md-2"> | 219 | <div class="form-group col-sm-3 col-md-2"> |
| 220 | <label>部门</label> | 220 | <label>部门</label> |
| 221 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->department?>"> | 221 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->department : ''?>"> |
| 222 | </div> | 222 | </div> |
| 223 | <div class="form-group col-sm-3 col-md-2"> | 223 | <div class="form-group col-sm-3 col-md-2"> |
| 224 | <label>单位性质</label> | 224 | <label>单位性质</label> |
| ... | @@ -232,18 +232,18 @@ | ... | @@ -232,18 +232,18 @@ |
| 232 | </div> | 232 | </div> |
| 233 | <div class="form-group col-sm-3 col-md-2"> | 233 | <div class="form-group col-sm-3 col-md-2"> |
| 234 | <label>职位名称</label> | 234 | <label>职位名称</label> |
| 235 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->jobPosition?>"> | 235 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->jobPosition : ''?>"> |
| 236 | </div> | 236 | </div> |
| 237 | </div> | 237 | </div> |
| 238 | 238 | ||
| 239 | <div class="row cl"> | 239 | <div class="row cl"> |
| 240 | <div class="form-group col-sm-3 col-md-2"> | 240 | <div class="form-group col-sm-3 col-md-2"> |
| 241 | <label>现单位入职时间</label> | 241 | <label>现单位入职时间</label> |
| 242 | <input type="text" class="form-control input-text Wdate" value="<?=$clientUnitOutputVO->currentUnitEntryDate?>"> | 242 | <input type="text" class="form-control input-text Wdate" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->currentUnitEntryDate : ''?>"> |
| 243 | </div> | 243 | </div> |
| 244 | <div class="form-group col-sm-3 col-md-2"> | 244 | <div class="form-group col-sm-3 col-md-2"> |
| 245 | <label>现单位工作年限</label> | 245 | <label>现单位工作年限</label> |
| 246 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->currentUnitWorkYears?>"> | 246 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->currentUnitWorkYears : ''?>"> |
| 247 | <span class="glyphicon glyphicon-year form-control-feedback" aria-hidden="true"></span> | 247 | <span class="glyphicon glyphicon-year form-control-feedback" aria-hidden="true"></span> |
| 248 | </div> | 248 | </div> |
| 249 | <div class="form-group col-sm-3 col-md-2"> | 249 | <div class="form-group col-sm-3 col-md-2"> | ... | ... |
-
Please register or sign in to post a comment