init
Showing
1 changed file
with
4 additions
and
4 deletions
| ... | @@ -248,14 +248,14 @@ | ... | @@ -248,14 +248,14 @@ |
| 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"> |
| 250 | <label>现单位电话</label> | 250 | <label>现单位电话</label> |
| 251 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->unitPhone?>"> | 251 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->unitPhone : ''?>"> |
| 252 | </div> | 252 | </div> |
| 253 | </div> | 253 | </div> |
| 254 | 254 | ||
| 255 | <div class="row cl"> | 255 | <div class="row cl"> |
| 256 | <div class="form-group col-sm-3 col-md-2"> | 256 | <div class="form-group col-sm-3 col-md-2"> |
| 257 | <label>月收入</label> | 257 | <label>月收入</label> |
| 258 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->monthlyIncome?>"> | 258 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->monthlyIncome : ''?>"> |
| 259 | <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span> | 259 | <span class="glyphicon glyphicon-rmb form-control-feedback" aria-hidden="true"></span> |
| 260 | </div> | 260 | </div> |
| 261 | <div class="form-group col-sm-3 col-md-2"> | 261 | <div class="form-group col-sm-3 col-md-2"> |
| ... | @@ -263,7 +263,7 @@ | ... | @@ -263,7 +263,7 @@ |
| 263 | <span class="form-control select-box"> | 263 | <span class="form-control select-box"> |
| 264 | <select class="select" size="1"> | 264 | <select class="select" size="1"> |
| 265 | <?php foreach ($this->session->wagePaymentFormEnum as $k=>$v):?> | 265 | <?php foreach ($this->session->wagePaymentFormEnum as $k=>$v):?> |
| 266 | <option <?=$clientUnitOutputVO->salaryGrantForm == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> | 266 | <option <?=$clientUnitOutputVO && $clientUnitOutputVO->salaryGrantForm == $k ? 'selected' : ''?> value="<?=$k?>"><?=$v?></option> |
| 267 | <?php endforeach;?> | 267 | <?php endforeach;?> |
| 268 | </select> | 268 | </select> |
| 269 | </span> | 269 | </span> |
| ... | @@ -273,7 +273,7 @@ | ... | @@ -273,7 +273,7 @@ |
| 273 | <div class="row cl"> | 273 | <div class="row cl"> |
| 274 | <div class="form-group col-sm-6 col-md-4"> | 274 | <div class="form-group col-sm-6 col-md-4"> |
| 275 | <label>现单位所在地</label> | 275 | <label>现单位所在地</label> |
| 276 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO->currentUnitAddress?>"> | 276 | <input type="text" class="form-control input-text" value="<?=$clientUnitOutputVO ? $clientUnitOutputVO->currentUnitAddress : ''?>"> |
| 277 | </div> | 277 | </div> |
| 278 | </div> | 278 | </div> |
| 279 | </div> | 279 | </div> | ... | ... |
-
Please register or sign in to post a comment