init
Showing
1 changed file
with
13 additions
and
0 deletions
| ... | @@ -286,6 +286,19 @@ | ... | @@ -286,6 +286,19 @@ |
| 286 | <input type="text" class="form-control input-text" | 286 | <input type="text" class="form-control input-text" |
| 287 | value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->unitPhone : '' ?>"> | 287 | value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->unitPhone : '' ?>"> |
| 288 | </div> | 288 | </div> |
| 289 | |||
| 290 | <div class="form-group col-sm-3 col-md-2"> | ||
| 291 | <label>职称类型</label> | ||
| 292 | <span class="form-control select-box"> | ||
| 293 | <select class="select" size="1"> | ||
| 294 | <?php foreach ($this->session->jobTypeEnum as $k => $v): ?> | ||
| 295 | <option <?= $clientUnitOutputVO && $clientUnitOutputVO->jobType == $k ? 'selected' : '' ?> | ||
| 296 | value="<?= $k ?>"><?= $v ?></option> | ||
| 297 | <?php endforeach; ?> | ||
| 298 | </select> | ||
| 299 | </span> | ||
| 300 | </div> | ||
| 301 | |||
| 289 | </div> | 302 | </div> |
| 290 | 303 | ||
| 291 | <div class="row cl"> | 304 | <div class="row cl"> | ... | ... |
-
Please register or sign in to post a comment