| | |
| | | <!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> |
| | |
| | | </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> |
| | |
| | | <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", |