双重预防项目-国泰新华二开定制版
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
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
    <th:block th:include="include :: header('查看隐患排查计划制定')"/>
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
    <form class="form-horizontal m" id="form-hiddenDangerCheck-edit" th:object="${hiddenDangerCheck}">
        <input name="checkId" th:field="*{checkId}" type="hidden">
        <div class="form-group">
            <label class="col-sm-3 control-label is-required">计划名称:</label>
            <div class="col-sm-8">
                <input name="planName" class="form-control" type="text" required th:field="*{planName}"
                       disabled="disabled">
            </div>
        </div>
 
        <!--<div class="form-group">-->
            <!--<label class="col-sm-3 control-label is-required">排查类型:</label>-->
            <!--<div class="col-sm-8">-->
                <!--<input name="troubleshootTypeName" class="form-control" type="text" required-->
                       <!--th:field="*{troubleshootTypeName}" disabled="disabled">-->
            <!--</div>-->
        <!--</div>-->
 
        <div class="form-group">
            <label class="col-sm-3 control-label is-required">组织单位:</label>
            <div class="col-sm-8">
                <input name="organizationDeptName" class="form-control" type="text" required
                       th:field="*{organizationDeptName}" disabled="disabled">
            </div>
        </div>
 
 
        <div class="form-group">
            <label class="col-sm-3 control-label">排查方式:</label>
            <div class="col-sm-8">
                <select name="checkType" class="form-control m-b" required  disabled="disabled">
                    <option value="1"
                            th:selected="${hiddenDangerCheck.checkType=='1'}">基础清单排查</option>
                    <option value="2"
                            th:selected="${hiddenDangerCheck.checkType=='2'||hiddenDangerCheck.checkType==null||hiddenDangerCheck.checkType==''}">风险单元清单排查</option>
                </select>
            </div>
        </div>
        <div class="form-group" th:if="${hiddenDangerCheck.checkType=='2'||hiddenDangerCheck.checkType==null||hiddenDangerCheck.checkType==''}">
            <label class="col-sm-3 control-label">风险单元:</label>
            <div class="col-sm-8">
                <input name="riskName" class="form-control" type="text" th:field="*{riskName}" disabled="disabled">
            </div>
        </div>
 
        <div class="form-group" th:if="${hiddenDangerCheck.checkType=='1'}">
            <label class="col-sm-3 control-label">基础清单名称:</label>
            <div class="col-sm-8">
                <input name="riskName" class="form-control" type="text" th:field="*{riskName}" disabled="disabled">
            </div>
        </div>
 
 
        <div class="form-group">
            <label class="col-sm-3 control-label  is-required">排查人:</label>
            <div class="col-sm-8">
                <input name="checkUserName" class="form-control" type="text" required th:field="*{checkUserName}"
                       disabled="disabled">
            </div>
        </div>
 
        <div class="form-group">
            <label class="col-sm-3 control-label  is-required">被检查单位:</label>
            <div class="col-sm-8">
                <input name="beCheckedDeptName" class="form-control" type="text" required
                       th:field="*{beCheckedDeptName}" disabled="disabled">
            </div>
        </div>
 
        <div class="form-group">
            <label class="col-sm-3 control-label  is-required">排查开始日期:</label>
            <div class="col-sm-8">
                <input name="checkBeginTime" disabled="disabled" th:field="*{checkBeginTime}" class="form-control"
                       type="text" readonly="readonly" required>
            </div>
        </div>
 
        <div class="form-group">
            <label class="col-sm-3 control-label  is-required">排查结束日期:</label>
            <div class="col-sm-8">
                <input name="checkEndTime" disabled="disabled" th:field="*{checkEndTime}" class="form-control"
                       type="text" readonly="readonly" required>
            </div>
        </div>
    </form>
</div>
<th:block th:include="include :: footer"/>
</body>
</html>