1
13693261870
2022-09-16 762f2fb45db004618ba099aa3c0bd89dba1eb843
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
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
    <title>应用程序管理-申请列表</title>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
    <script src="../../../js/paramconfig.js"></script>
    <script type="text/javascript">
        //脚本,css引用
        remoteToLoadCss('BootStrap4/assets/css/style.css');
        remoteToLoadCss('BootStrap4/expand/css/bootstrap-extract.css');
        remoteToLoadCss('BootStrap4/expand/plugins/jqgrid/ui.jqgrid-bootstrap.css');
        remoteToLoadCss('BootStrap4/expand/css/jqGridCommon.css');
        loadLocalCss('../../../css/jquery-ui.min.css');
        remoteToLoadJs('BootStrap4/assets/js/jquery.min.js');
        remoteToLoadJs('BootStrap4/expand/plugins/layer/layer.js');
        remoteToLoadJs('BootStrap4/assets/js/tether.min.js');
        remoteToLoadJs('BootStrap4/assets/js/bootstrap.min.js');
        remoteToLoadJs('BootStrap4/expand/plugins/jqgrid/grid.locale-cn.js');
        remoteToLoadJs('BootStrap4/expand/plugins/jqgrid/jquery.jqGrid.min.js');
 
        loadLocalJs('../../../libs/vue.min.js');
        loadLocalJs('../../../js/common.js');
        loadLocalJs('../../../js/jquery-ui.min.js');
    </script>
    <style>
        html { overflow-x:hidden; }
 
        body {
            background-color: white;
            padding-bottom: 0;
        }
 
        .panel-body {
            padding-right: 40px;
        }
 
        th {
            text-align: center;
        }
        .col-xs-12,
        .col-sm-12,
        .col-md-6,
        .col-lg-4,
        .col-xl-3{
            padding-left: 0;
            padding-right: 0;
        }
 
        #del .fa-trash-o:before {
            content: "";
        }
 
        .btn_arrow {
            width: 19px;
            height: 25px;
            float: left;
            background: url('/image/arrow.png') no-repeat 0px 0px;
            margin-left: 15px;
            margin-bottom: 10px;
            cursor: pointer;
        }
 
        .row {
            margin-left: 0;
            margin-right: 0;
        }
    </style>
</head>
<body>
<div>
    <table id="applyjqGrid"></table>
    <div id="applyjqGridPager"></div>
</div>
<div class="modal fade" id="resultModal" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog" style="width: 400px;margin-top: 70px;">
        <div class="modal-content">
            <div class="modal-header">
                申请审核
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
                    &times;
                </button>
            </div>
            <div class="modal-body SearchBox">
                <div class="row">
                    <div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 col-xl-3 DivHeight">
                        <label class="control-label" style="width: 70px;">审核结果</label>
                        <div class="controls" style="margin-left: 70px;">
                            <label class="radio-inline"><input type="radio" name="auditstatus" value="1" />通过</label>
                            <label class="radio-inline"><input type="radio" name="auditstatus" value="2" />不通过</label>
                        </div>
                    </div>
                </div>
                <div class="row">
                    <div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 col-xl-3 DivHeight" style="height: 95px;">
                        <label class="control-label" style="width: 70px;">审核意见</label>
                        <div class="controls" style="margin-left: 70px;">
                            <textarea id="auditopinion" name="auditopinion" class="col-sm-12" style="border: 1px solid #e3e3e3;height: 90px;"></textarea>
                        </div>
                    </div>
                </div>
            </div>
            <div class="modal-footer">
                <input type="hidden" id="applyid" />
                <button type="button" class="btn btn-primary" onclick="SaveAuditResult()">确定</button>
                <button type="button" class="btn" onclick="CloseModal()">取消</button>
            </div>
        </div>
    </div>
</div>
<div class="modal fade" id="opinionModal" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
    <div class="modal-dialog" style="width: 300px;margin-top: 100px;">
        <div class="modal-content">
            <div class="modal-header">
                审核意见
                <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
                    &times;
                </button>
            </div>
            <div class="modal-body">
                <div id="opinionDiv" style="width: 100%;"></div>
            </div>
        </div>
    </div>
</div>
<script src="../../../js/modules/sys/systeminfoapply.js"></script>
</body>
</html>