|
|
|
@ -35,8 +35,8 @@ content="width=device-width, initial-scale=1, user-scalable=1" name="viewport"/>
|
|
|
|
|
<label class="control-label col-sm-4" title="">
|
|
|
|
|
<span class="required ">*</span> 岗位名称:<i class="fa icon-question hide"></i></label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input type="hidden" id="id" name="id" th:value="${post.id}"/>
|
|
|
|
|
<input type="text" id="name" name="name" th:value="${post.name}" maxlength="100" class="form-control required "/>
|
|
|
|
|
<input type="hidden" id="postCode" name="postCode" th:value="${post.postCode}"/>
|
|
|
|
|
<input type="text" id="name" name="name" th:value="${post.postName}" maxlength="100" class="form-control required "/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -46,7 +46,7 @@ content="width=device-width, initial-scale=1, user-scalable=1" name="viewport"/>
|
|
|
|
|
<span class="required ">*</span> 岗位编码:<i class="fa icon-question hide"></i></label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input type="hidden" id="isNewRecord" name="isNewRecord" value="true"/>
|
|
|
|
|
<input type="text" id="code" name="code" th:value="${post.code}" maxlength="64" class="form-control required abc"/>
|
|
|
|
|
<input type="text" id="code" name="code" th:value="${post.postCode}" maxlength="64" class="form-control required abc"/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -59,10 +59,10 @@ content="width=device-width, initial-scale=1, user-scalable=1" name="viewport"/>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select id="postType" name="postType" class="form-control ">
|
|
|
|
|
<option value=""> </option>
|
|
|
|
|
<option value="gaoguan" th:selected="${post.postType.value=='gaoguan'}? true : false">高管</option>
|
|
|
|
|
<option value="zhongceng" th:selected="${post.postType.value=='zhongceng'}? true : false">中层</option>
|
|
|
|
|
<option value="jiceng" th:selected="${post.postType.value=='jiceng'}? true : false">基层</option>
|
|
|
|
|
<option value="qita" th:selected="${post.postType.value=='qita'}? true : false">其它</option>
|
|
|
|
|
<option value="gaoguan" th:selected="${post.postType=='gaoguan'}? true : false">高管</option>
|
|
|
|
|
<option value="zhongceng" th:selected="${post.postType=='zhongceng'}? true : false">中层</option>
|
|
|
|
|
<option value="jiceng" th:selected="${post.postType=='jiceng'}? true : false">基层</option>
|
|
|
|
|
<option value="qita" th:selected="${post.postType=='qita'}? true : false">其它</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -72,7 +72,7 @@ content="width=device-width, initial-scale=1, user-scalable=1" name="viewport"/>
|
|
|
|
|
<label class="control-label col-sm-4" title="">
|
|
|
|
|
<span class="required hide">*</span> 排序号:<i class="fa icon-question hide"></i></label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input type="text" id="sorts" name="sorts" th:value="${post.sorts}" maxlength="10" class="form-control digits"/>
|
|
|
|
|
<input type="text" id="sorts" name="sorts" th:value="${post.postSort}" maxlength="10" class="form-control digits"/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|