feat:编码规范性修改

kingbase
wangxy 10 months ago
parent ae38bb0bb8
commit c27e23f427

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

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

Loading…
Cancel
Save