feat:编码规范性修改

kingbase
wangxy 10 months ago
parent ae38bb0bb8
commit c27e23f427

@ -21,14 +21,14 @@
<li>
<label>离职状态:</label>
<select name="leavestate" 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>
</li>
<li>
<label>审核意见:</label>
<select name="examinestate" th:with="type=${@dict.getType('sys_examine_state')}">
<option value="">所有</option>
<option value="">---请选择---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>

@ -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>

Loading…
Cancel
Save