From 7be0d5b901b999d2347774df3cc1a64927838bb3 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期二, 15 四月 2025 10:10:35 +0800
Subject: [PATCH] 优化每年专项数据获取

---
 src/main/resources/templates/tr/baseCheckPoint/edit.html |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/templates/tr/baseCheckPoint/edit.html b/src/main/resources/templates/tr/baseCheckPoint/edit.html
index 0c4c534..4c77de8 100644
--- a/src/main/resources/templates/tr/baseCheckPoint/edit.html
+++ b/src/main/resources/templates/tr/baseCheckPoint/edit.html
@@ -32,8 +32,15 @@
                 </div>
             </div>
 
-
-
+            <div class="form-group">
+                <label class="col-sm-3 control-label">风险管控措施:</label>
+                <div class="col-sm-8">
+                    <select name="controlMeasureId" th:field="*{controlMeasureId}" class="form-control m-b">
+                        <option value="">--请选择风险管控措施--</option>
+                        <option th:each="u :${measureList}" th:value="${u.id}" th:text="${u.checkContent}"></option>
+                    </select>
+                </div>
+            </div>
         </form>
     </div>
     <th:block th:include="include :: footer" />

--
Gitblit v1.9.2