6e28b7e8 by yangjianbin

init

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