feat:检查通知bug修改

kingbase
wangxy 9 months ago
parent 39a2942828
commit 067dd41f3c

@ -74,10 +74,10 @@
<div class="form-group"> <div class="form-group">
<label class="col-sm-4 control-label">维修单位状态:</label> <label class="col-sm-4 control-label">维修单位状态:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<select name="indentureState" class="form-control" th:with="type=${@dict.getType('sys_normal_disable')}"> <div class="radio-box" th:each="dict : ${@dict.getType('sys_normal_disable')}">
<option value="">---请选择---</option> <input type="radio" th:id="${dict.dictCode}" name="indentureState" 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>

@ -75,9 +75,10 @@
<div class="form-group"> <div class="form-group">
<label class="col-sm-4 control-label">维修单位状态:</label> <label class="col-sm-4 control-label">维修单位状态:</label>
<div class="col-sm-8"> <div class="col-sm-8">
<select name="indentureState" class="form-control" th:with="type=${@dict.getType('sys_normal_disable')}"> <div class="radio-box" th:each="dict : ${@dict.getType('sys_normal_disable')}">
<option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{indentureState}"></option> <input type="radio" th:id="${dict.dictCode}" name="indentureState" th:value="${dict.dictValue}" th:field="*{indentureState}">
</select> <label th:for="${dict.dictCode}" th:text="${dict.dictLabel}"></label>
</div>
</div> </div>
</div> </div>
</div> </div>

Loading…
Cancel
Save