双重预防项目-国泰新华二开定制版
heheng
2024-11-15 9015e720487b737743232b0b3aa464c2ac9e8d17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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>