feat:检查通知bug修改

kingbase
wangxy 9 months ago
parent 02b5ef906b
commit 39a2942828

@ -62,16 +62,15 @@
<textarea name="notifyContent" required class="form-control"></textarea>
</div>
</div>
<!-- <div class="form-group"> -->
<!-- <label class="col-sm-3 control-label">发出状态:</label>-->
<!-- <div class="col-sm-8">-->
<!-- <select name="notifyState" class="form-control m-b" th:with="type=${@dict.getType('sys_notice_state')}">-->
<!-- <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>-->
<!-- </select>-->
<!-- </div>-->
<!-- </div>-->
<div class="form-group">
<label class="col-sm-3 control-label">发出状态:</label>
<div class="col-sm-8">
<div class="radio-box" th:each="dict : ${@dict.getType('sys_notice_state')}">
<input type="radio" th:id="${dict.dictCode}" name="notifyState" th:value="${dict.dictValue}" th:checked="${dict.default}">
<label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
</div>
</div>
</div>
</form>
</div>
<th:block th:include="include :: footer" />

@ -64,12 +64,12 @@
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label is-required">发出状态:</label>
<label class="col-sm-3 control-label">发出状态:</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 class="radio-box" th:each="dict : ${@dict.getType('sys_notice_state')}">
<input type="radio" th:id="${dict.dictCode}" name="notifyState" th:value="${dict.dictValue}" th:field="*{notifyState}">
<label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
</div>
</div>
</div>
</form>

Loading…
Cancel
Save