From a3888330dfc4df035753dd77ffeaf6155060b697 Mon Sep 17 00:00:00 2001
From: 16639036659 <577530412@qq.com>
Date: 星期二, 18 六月 2024 16:34:06 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
src/main/resources/templates/tr/tbBaseCheckScore/edit.html | 23 ++++++++++++++---------
1 files changed, 14 insertions(+), 9 deletions(-)
diff --git a/src/main/resources/templates/tr/tbBaseCheckScore/edit.html b/src/main/resources/templates/tr/tbBaseCheckScore/edit.html
index fbbfe9a..6fcf470 100644
--- a/src/main/resources/templates/tr/tbBaseCheckScore/edit.html
+++ b/src/main/resources/templates/tr/tbBaseCheckScore/edit.html
@@ -1,19 +1,19 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
- <th:block th:include="include :: header('修改检查任务')"/>
+ <th:block th:include="include :: header('检查项评分')"/>
<th:block th:include="include :: datetimepicker-css"/>
</head>
<body class="white-bg">
<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}"/>
+ <input id="id" name="id" type="hidden" th:field="*{id}"/>
<!-- <input id="createUserId" name="createUserId" type="hidden" th:field="*{createUserId}"/>-->
<!-- <input id="createBy" name="createBy" type="hidden" th:field="*{createBy}"/>-->
<div class="form-group">
- <label class="col-sm-3 control-label is-required">风险分析对象:</label>
+ <label class="col-sm-3 control-label is-required">关联隐患:</label>
<div class="col-sm-8">
<select id="hazardCode" name="hazardCode" th:field="*{hazardCode}" class="form-control" required>
<option th:each="hazard : ${hazardList}" th:text="${hazard.riskListName}" th:value="${hazard.riskListNum}"></option>
@@ -42,16 +42,21 @@
</div>
</div>
<div class="form-group">
- <label class="col-sm-3 control-label is-required">是否停产整顿:</label>
+ <label class="col-sm-3 control-label is-required">危害类型:</label>
<div class="col-sm-8">
- <select name="resultStatus" th:field="*{resultStatus}" class="form-control m-b" required id="resultStatus">
+ <select name="checkType" th:field="*{checkType}" class="form-control m-b" required id="checkType">
<option value="">请选择</option>
- <option value="0">否</option>
- <option value="1">是</option>
+ <option value="1">事故隐患</option>
+ <option value="2">火灾隐患</option>
</select>
</div>
</div>
-
+ <div class="form-group">
+ <label class="col-sm-3 control-label is-required">罚款金额(元):</label>
+ <div class="col-sm-8">
+ <input class="form-control" th:field="*{jobName}" type="number" name="jobName" id="jobName" required>
+ </div>
+ </div>
<!-- <input id="jobGroup" name="jobGroup" type="hidden" value="specialCheckTaskLog"/>-->
</form>
@@ -59,7 +64,7 @@
<th:block th:include="include :: footer"/>
<th:block th:include="include :: datetimepicker-js"/>
<script th:inline="javascript">
- var prefix = ctx + "tr/specialCheckTaskLog";
+ var prefix = ctx + "tr/tbBaseCheckScore";
$("input[name='checkDate']").datetimepicker({
format: "yyyy-mm-dd",
--
Gitblit v1.9.2