f2087fe7 by wang

Merge remote-tracking branch 'origin/develop' into develop

2 parents eee118fb 6e0450bb
...@@ -263,6 +263,17 @@ ...@@ -263,6 +263,17 @@
263 </span> 263 </span>
264 </div> 264 </div>
265 <div class="form-group col-sm-3 col-md-2"> 265 <div class="form-group col-sm-3 col-md-2">
266 <label>职称类型</label>
267 <span class="form-control select-box">
268 <select class="select" size="1">
269 <?php foreach ($this->session->jobTypeEnum as $k => $v): ?>
270 <option <?= $clientUnitOutputVO && $clientUnitOutputVO->jobType == $k ? 'selected' : '' ?>
271 value="<?= $k ?>"><?= $v ?></option>
272 <?php endforeach; ?>
273 </select>
274 </span>
275 </div>
276 <div class="form-group col-sm-3 col-md-2">
266 <label>职位名称</label> 277 <label>职位名称</label>
267 <input type="text" class="form-control input-text" 278 <input type="text" class="form-control input-text"
268 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->jobPosition : '' ?>"> 279 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->jobPosition : '' ?>">
...@@ -272,7 +283,7 @@ ...@@ -272,7 +283,7 @@
272 <div class="row cl"> 283 <div class="row cl">
273 <div class="form-group col-sm-3 col-md-2"> 284 <div class="form-group col-sm-3 col-md-2">
274 <label>现单位入职时间</label> 285 <label>现单位入职时间</label>
275 <input type="text" class="form-control input-text Wdate" 286 <input type="text" class="form-control input-text Wdate" onfocus="WdatePicker()"
276 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->currentUnitEntryDate : '' ?>"> 287 value="<?= $clientUnitOutputVO ? $clientUnitOutputVO->currentUnitEntryDate : '' ?>">
277 </div> 288 </div>
278 <div class="form-group col-sm-3 col-md-2"> 289 <div class="form-group col-sm-3 col-md-2">
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!