失泄密案件登记

pg_adapter
dshclm 8 months ago
parent 8fd0e04e62
commit 739269d4d2

@ -95,10 +95,10 @@
<div class="form-group">
<label class="col-sm-4 control-label is-required" >案件状态:</label>
<div class="col-sm-8">
<select name="state" required class="form-control m-b" th:with="type=${@dict.getType('sys_case_state')}">
<option value="">---请选择---</option>
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}"></option>
</select>
<div class="radio-box" th:each="dict : ${@dict.getType('sys_case_state')}">
<input type="radio" required th:id="${dict.dictCode}" name="state" th:value="${dict.dictValue}" th:checked="${dict.default}">
<label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
</div>
</div>
</div>
</div>

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

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

Loading…
Cancel
Save