失泄密案件登记

pg_adapter
dshclm 8 months ago
parent 8fd0e04e62
commit 739269d4d2

@ -95,10 +95,10 @@
<div class="form-group"> <div class="form-group">
<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="state" required class="form-control m-b" th:with="type=${@dict.getType('sys_case_state')}"> <div class="radio-box" th:each="dict : ${@dict.getType('sys_case_state')}">
<option value="">---请选择---</option> <input type="radio" required th:id="${dict.dictCode}" name="state" 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>
</div> </div>

@ -96,10 +96,10 @@
<div class="form-group"> <div class="form-group">
<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="state" disabled required class="form-control m-b" th:with="type=${@dict.getType('sys_case_state')}"> <div class="radio-box" th:each="dict : ${@dict.getType('sys_case_state')}">
<option value="">---请选择---</option> <input disabled type="radio" required th:id="${dict.dictCode}" name="state" th:value="${dict.dictValue}" th:checked="${dict.default}" th:field="*{state}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{state}"></option> <label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
</select> </div>
</div> </div>
</div> </div>
</div> </div>

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

Loading…
Cancel
Save