From 6d8304c25e9b732172de6f1597075612aa2950de Mon Sep 17 00:00:00 2001
From: 马宇豪 <978517621@qq.com>
Date: 星期三, 19 六月 2024 15:21:12 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

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

diff --git a/src/main/resources/templates/tr/specialCheckTaskLog/edit.html b/src/main/resources/templates/tr/specialCheckTaskLog/edit.html
index 645e0bd..0adf82f 100644
--- a/src/main/resources/templates/tr/specialCheckTaskLog/edit.html
+++ b/src/main/resources/templates/tr/specialCheckTaskLog/edit.html
@@ -9,7 +9,14 @@
     <form class="form-horizontal m" id="form-job-edit" th:object="${specialCheckTaskLog}">
         <input id="indexId" name="indexId" type="hidden" th:field="*{indexId}"/>
 
-
+        <div class="form-group">
+            <label class="col-sm-3 control-label is-required">专项检查任务:</label>
+            <div class="col-sm-8">
+                <select id="taskId" name="taskId" th:field="*{taskId}" class="form-control" required>
+                    <option th:each="task : ${tbBaseCheckTask}" th:text="${task.taskName}" th:value="${task.id}"></option>
+                </select>
+            </div>
+        </div>
 <!--        <input id="createUserId" name="createUserId" type="hidden" th:field="*{createUserId}"/>-->
 <!--        <input id="createBy" name="createBy" type="hidden" th:field="*{createBy}"/>-->
         <div class="form-group">

--
Gitblit v1.9.2