feat:检查通知bug修改

kingbase
wangxy 9 months ago
parent 02b5ef906b
commit 39a2942828

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

@ -64,12 +64,12 @@
</div> </div>
</div> </div>
<div class="form-group"> <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"> <div class="col-sm-8">
<select name="notifyState" required class="form-control m-b" th:with="type=${@dict.getType('sys_notice_state')}"> <div class="radio-box" th:each="dict : ${@dict.getType('sys_notice_state')}">
<option value="">---请选择---</option> <input type="radio" th:id="${dict.dictCode}" name="notifyState" th:value="${dict.dictValue}" th:field="*{notifyState}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{notifyState}"></option> <label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
</select> </div>
</div> </div>
</div> </div>
</form> </form>

Loading…
Cancel
Save