<!DOCTYPE html>
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
|
<head>
|
<th:block th:include="include :: header('风险告知卡')"/>
|
<th:block th:include="include :: bootstrap-fileinput-css"/>
|
</head>
|
<body class="white-bg">
|
<div class="wrapper wrapper-content">
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-striped">
|
<tbody>
|
<tr>
|
<td>风险单元名称</td>
|
<td>[[${riskList.riskListName}]]</td>
|
<td>风险单元类型</td>
|
<td th:if="${riskList.riskType}==1">设备设置</td>
|
<td th:if="${riskList.riskType}==2">作业活动</td>
|
<td th:if="${riskList.riskType}==3">工艺节点</td>
|
<td>风险单元编号</td>
|
<td>
|
[[${riskList.riskListNum}]]
|
</td>
|
<td>风险单元位置</td>
|
<td>
|
[[${riskList.regionName}]]
|
</td>
|
</tr>
|
<span th:each="checkPoint,status : ${checkPointList}">
|
<tr>
|
<td th:text="'检查点'+${status.count}+'管控措施'" colspan="8"></td>
|
</tr>
|
<tr>
|
<td>风险等级</td>
|
<td>[[${checkPoint.evaluationAfterFengxianJibie}]]</td>
|
<td>风险色</td>
|
<td th:if="${checkPoint.evaluationAfterFengxianse} == '红色'" style="background-color: #ff0000;border-color: #ff0000;color: #000000;">红色</td>
|
<td th:if="${checkPoint.evaluationAfterFengxianse} == '橙色'" style="background-color: #ff6100;border-color: #ff6100;color: #000000;">橙色</td>
|
<td th:if="${checkPoint.evaluationAfterFengxianse} == '黄色'" style="background-color: #ffff00;border-color: #ffff00;color: #000000;">黄色</td>
|
<td th:if="${checkPoint.evaluationAfterFengxianse} == '蓝色'" style="background-color: #0000ff;border-color: #0000ff;color: #ffffff;">蓝色</td>
|
<td>管控层级</td>
|
<td>[[${checkPoint.evaluationAfterGuankongCengji}]]</td>
|
<td>负责人</td>
|
<td>[[${user.userName}]]</td>
|
</tr>
|
|
<tr>
|
<td>危险源</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==1">[[${checkPoint.sclQingkuang}]]</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==2">[[${checkPoint.jhaWeixianyuan}]]</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==3">[[${checkPoint.hazopYuanyin}]]</td>
|
</tr>
|
<tr>
|
<td>可能导致的事故</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==1">[[${checkPoint.sclZhuyaoHouguo}]]</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==2">[[${checkPoint.jhaShiguLeixing}]]</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==3">[[${checkPoint.hazopHouguo}]]</td>
|
</tr>
|
<td>警示标志</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==1">[[${checkPoint.sclZhuyaoHouguo}]]</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==2">[[${checkPoint.jhaShiguLeixing}]]</td>
|
<td colspan="7" th:if="${checkPoint.plan.riskIdentifyMethod} ==3">[[${checkPoint.hazopHouguo}]]</td>
|
</tr>
|
|
<span th:if="(${checkPoint.evaluationAfterGuanli} == null or ${checkPoint.evaluationAfterGuanli} == '' )or
|
(${checkPoint.evaluationAfterJiaoyu} == null or ${checkPoint.evaluationAfterJiaoyu} == '' ) or
|
(${checkPoint.evaluationAfterFanghu} == null or ${checkPoint.evaluationAfterFanghu} == '' ) or
|
(${checkPoint.evaluationAfterYingji} == null or ${checkPoint.evaluationAfterYingji} == '') " >
|
<!--只输入工程技术措施,显示模式-->
|
<tr>
|
<td>管控措施</td>
|
<td colspan="6">[[${checkPoint.evaluationAfterJishu}]]</td>
|
</tr>
|
|
</span>
|
|
<span th:if="${checkPoint.evaluationAfterGuanli} != null and
|
${checkPoint.evaluationAfterJiaoyu} != null and
|
${checkPoint.evaluationAfterFanghu} != null and
|
${checkPoint.evaluationAfterYingji} != null ">
|
<!--五条管控措施都输入的模式,显示模式-->
|
<tr>
|
<td rowspan="5" >管控措施</td>
|
<td>工程技术</td>
|
<td colspan="6">[[${checkPoint.evaluationAfterJishu}]]</td>
|
</tr>
|
<tr>
|
<td>管理措施</td>
|
<td colspan="6">[[${checkPoint.evaluationAfterGuanli}]]</td>
|
</tr>
|
<tr>
|
<td>教育培训</td>
|
<td colspan="6">[[${checkPoint.evaluationAfterJiaoyu}]]</td>
|
</tr>
|
<tr>
|
<td>个体防护</td>
|
<td colspan="6">[[${checkPoint.evaluationAfterFanghu}]]</td>
|
</tr>
|
<tr>
|
<td>应急处理</td>
|
<td colspan="6">[[${checkPoint.evaluationAfterYingji}]]</td>
|
</tr>
|
|
</span>
|
|
|
</span>
|
|
|
</tbody>
|
</table>
|
|
</div>
|
|
</div>
|
|
|
<th:block th:include="include :: footer"/>
|
|
</body>
|
</html>
|