From 5746e59e622daa8ce62d0c29aaba9b8bd5308bcd Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期五, 27 六月 2025 12:28:46 +0800 Subject: [PATCH] 修复问题 --- src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html b/src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html index 0eddc74..5a80e2a 100644 --- a/src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html +++ b/src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html @@ -118,6 +118,17 @@ </div> </div> </div> + <div class="col-sm-6"> + <div class="form-group"> + <label class="col-sm-4 control-label">隐患来源:</label> + <div class="col-sm-8"> + <select th:field="*{dangerSrc}" class="form-control m-b" th:with="type=${@dict.getType('danger_source')}" readonly="readonly"> + <option value="" disabled>--请选择隐患来源--</option> + <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" disabled></option> + </select> + </div> + </div> + </div> </div> -- Gitblit v1.9.2