6e28b7e8 by yangjianbin

init

1 parent 12982ab9
......@@ -286,6 +286,19 @@
<input type="text" class="form-control input-text"
value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->unitPhone : '' ?>">
</div>
<div class="form-group col-sm-3 col-md-2">
<label>职称类型</label>
<span class="form-control select-box">
<select class="select" size="1">
<?php foreach ($this->session->jobTypeEnum as $k => $v): ?>
<option <?= $clientUnitOutputVO && $clientUnitOutputVO->jobType == $k ? 'selected' : '' ?>
value="<?= $k ?>"><?= $v ?></option>
<?php endforeach; ?>
</select>
</span>
</div>
</div>
<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!