双重预防项目-国泰新华二开定制版
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
<!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">
         .dialog{
            height: 20em;
        }
 
    </style>
</head>
<body class="white-bg dialog">
<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">
        <div class="form-group">
            <label class="col-sm-3 control-label is-required">隐患等级:</label>
            <div class="col-sm-8">
                <select name="troubleTypeName" class="form-control m-b">
                    <option value="B级隐患">B级隐患</option>
                    <option value="C级隐患">C级隐患</option>
                </select>
            </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">
    $(document).ready(function () {
 
    });
 
    var prefix = ctx + "tr/hiddenDangerCheck/dangerLedger";
    $("#form-hdcp-edit").validate({
        focusCleanup: true
    });
 
 
    function submitHandler() {
        if ($.validate.form()) {
            var data = $('#form-hdcp-edit').serializeArray();
            $.operate.save(prefix + "/editDangerLevelSave", data);
        }
    };
 
</script>
</body>
</html>