|
|
|
@ -25,7 +25,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label is-required">离职状态:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="leavestate" required class="form-control m-b" th:with="type=${@dict.getType('sys_user_leave')}">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option value="">---请选择---</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -46,7 +46,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label is-required">工作交接:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="workstate" required class="form-control m-b" th:with="type=${@dict.getType('sys_user_work')}">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option value="">---请选择---</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
@ -59,7 +59,7 @@
|
|
|
|
|
<label class="col-sm-4 control-label is-required">领导意见:</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<select name="examinestate" required class="form-control m-b" th:with="type=${@dict.getType('sys_examine_state')}">
|
|
|
|
|
<option value="">所有</option>
|
|
|
|
|
<option value="">---请选择---</option>
|
|
|
|
|
<option th:each="dict : ${type}" th:if="${dict.dictValue != '2'}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|