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