From e6f72c636a956f2347dee6edfd5cb6f90daeb646 Mon Sep 17 00:00:00 2001
From: kongzy <kongzy>
Date: 星期五, 25 十月 2024 14:26:38 +0800
Subject: [PATCH] 增加密码复杂度校验

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

diff --git a/src/main/resources/templates/tr/specialCheckTaskLog/detail.html b/src/main/resources/templates/tr/specialCheckTaskLog/detail.html
index 2d27487..81dd86f 100644
--- a/src/main/resources/templates/tr/specialCheckTaskLog/detail.html
+++ b/src/main/resources/templates/tr/specialCheckTaskLog/detail.html
@@ -8,7 +8,14 @@
 <div class="wrapper wrapper-content animated fadeInRight ibox-content">
     <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}"/>-->
@@ -37,7 +44,7 @@
             <div class="col-sm-8">
                 <div class="input-group date">
                     <span class="input-group-addon"><i class="fa fa-calendar"></i></span>
-                    <input name="checkDate" th:value="${#dates.format(specialCheckTaskLog.checkDate, 'yyyy-MM-dd')}" class="form-control" type="text" required readonly="readonly">
+                    <input name="checkDate" th:value="${#dates.format(specialCheckTaskLog.checkDate, 'yyyy-MM-dd HH:mm:ss')}" class="form-control" type="text" required readonly="readonly">
                 </div>
             </div>
         </div>

--
Gitblit v1.9.2