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