双重预防项目-国泰新华二开定制版
heheng
2025-06-24 e98eeaaa5766511fdb8e6d5e412eb1c59d1f07ce
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
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
    <th:block th:include="include :: header('延期整改')"/>
    <th:block th:include="include :: datetimepicker-css"/>
    <th:block th:include="include :: jquery-steps-css"/>
 
    <!--多图上传样式-->
    <link rel="stylesheet" href="/ajax/libs/layui/css/layui.css" media="all">
    <style type="text/css">
        #tablist li a {
            height: 5em;
        }
 
        #tablist li.notExecute a {
            line-height: 5em;
            text-align: center;
        }
 
        label.error{
            position :absolute !important;
        }
        #preFileList{
            display: flex;
            align-items: flex-start;
            margin-top: 10px;
        }
        #postFileList{
            display: flex;
            align-items: flex-start;
            margin-top: 10px;
        }
        .file-list-item1,.file-temp1,.file-list-item2,.file-temp2{
            width: 100px;
            margin-right: 10px;
        }
        [class^="file-list-item"] div:nth-child(1){
            width: 100%;
            overflow: hidden;
            position: relative;
        }
        [class^="file-list-item"] div:nth-child(1) img{
            width: 100px;
            height: 100px;
        }
        [class^="file-list-item"] div:nth-child(1) .layui-badge1,.layui-badge2{
            position: absolute;
            left: 2px;
            top: 2px;
        }
        [class^="file-list-item"] div:nth-child(2){
            width: 100%;
            height: 36px;
            text-align: center;
            line-height: 36px;
            margin-top: 4px;
        }
        [class^="file-list-item"] div:nth-child(2) [class^="file-cancel"]{
            width: 100%;
            height: 36px;
        }
        [class^="file-list-item"] div:nth-child(2) [class^="file-cancel"]:hover{
            background: #ED5565;
            color: #fff;
        }
    </style>
</head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
    <form class="form-horizontal m" id="form-hdcp-edit" th:object="${hdcp}">
        <input name="id" th:field="*{id}" type="hidden">
<!--        <input name="checkId" th:field="*{checkId}" type="hidden">-->
        <div class="form-group showByDangerLevelChange">
            <label class="col-sm-3 control-label is-required">完成期限:</label>
            <div class="col-sm-8">
                <div class="input-group date">
                    <span class="input-group-addon"><i class="fa fa-calendar"></i></span>
                    <input name="rectifyDeadlineTime" class="form-control" type="text" readonly="readonly" required>
                </div>
            </div>
        </div>
    </form>
</div>
<th:block th:include="include :: footer"/>
<th:block th:include="include :: datetimepicker-js"/>
<th:block th:include="include :: jquery-steps-js"/>
<script type="text/javascript">
    var prefix = ctx + "tr/hiddenDangerCheck/dangerRectify";
    function submitHandler() {
        if ($.validate.form()) {
            var data = $('#form-hdcp-edit').serializeArray();
            $.operate.save(prefix + "/rectifyTimeOut", data);
        }
    }
 
    $("input[name='rectifyDeadlineTime']").datetimepicker({
        format: "yyyy-mm-dd",
        minView: "month",
        autoclose: true
    });
</script>
</body>
</html>