feat:编码规范性修改

kingbase
wangxy 10 months ago
parent c27e23f427
commit dad5200005

@ -67,6 +67,7 @@
<label class="col-sm-3 control-label is-required">发出状态:</label>
<div class="col-sm-8">
<select name="notifyState" required class="form-control m-b" th:with="type=${@dict.getType('sys_notice_state')}">
<option value="">---请选择---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{notifyState}"></option>
</select>
</div>

@ -36,7 +36,7 @@
<li>
<label>发出状态:</label>
<select name="notifyState" th:with="type=${@dict.getType('sys_notice_state')}">
<option value="">所有</option>
<option value="">---请选择---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
</li>

Loading…
Cancel
Save