tom
2024-08-16 d128bca90c989ecbbe2f3054314b43a22b8871d1
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<!doctype html>
<html>
    <head>
        <meta charset="utf-8"><meta http-equiv="Expires" content="0"><meta http-equiv="Pragma" content="no-cache"><meta http-equiv="Cache-control" content="no-cache"><meta http-equiv="Cache" content="no-cache">
        <title>接口监控</title>
        
        <script type="text/javascript">
            var pageVue = null;
            function loadJsCss(callback) {
                var jscss_urls = [
                    {id: "css_m1", type: "css", url: "root/css/tree.css"},
                ];
                window.top.initJsCss(document, jscss_urls, callback);
            };
            
            function initVue() {
                new TreeVue({
                    el: "#vbody",
                    data: {
                        //树形结构数据
                        title: "接口监控",
                        tree_title: "接口类型",
                        treeData:[
                            {
                                id: "out",
                                level: 0,
                                name: "输出接口",
                                parent_id: null,
                                children: [],
                            },
                            {
                                id: "in",
                                level: 0,
                                name: "输入接口",
                                parent_id: null,
                                children: [],
                            },
                        ],
                        
                        dataRequest: [
                            {
                                name: "out_data",
                                dataname: "sys_interface", 
                                filter: " type='Output'",
                                isnotoption: true, //true:不是选项
                                orderby: "name"
                            },
                            
                            {
                                name: "in_data",
                                dataname: "sys_interface",
                                filter: " type='Input'",
                                isnotoption: true, //true:不是选项
                                orderby: "name"
                            },
                        ],
                        dataRequestObj: {},
                        
                        treeTxtFormatter: "{name}",
                        isTreeReadonly: true,
                        
                        //对应的右边数据
                        dataname_p: "sys_interface_log",
                        pagesize_p: 10,
                        pagenum_p: 1,
                        total_p: 0,
                        tableData_p: [],
                        tableFields_p: [
                            {isshow: "T", field: "interface_name", name: "名称", width: "150"},
                            {isshow: "T", field: "interface_source", name: "来源"},
                            {isshow: "T", field: "start_time", name: "开始时间", width: "150"},/* , formatter: "formatter_date" */
                            {isshow: "T", field: "end_time", name: "结束时间", width: "150"},/* , formatter: "formatter_date" */
                            {isshow: "T", field: "call_name", name: "调用人"},
                            {isshow: "T", field: "create_time", name: "调用时间", width: "150"},
                            {isshow: "T", field: "request", name: "请求内容"},
                            {isshow: "T", field: "return", name: "返回内容"},
                            
                        ],
                        isRefresh_p: true,
                        tableHeight_p: 100,
                        
                        filterfieldClick: {},
                        tablefieldClick: {},
                        // selectnode:{},
                        selectnodedata:{},
                        defaultexpandedkeys:[],
                        currentnodekey:"",
                    },
                    
                    created() {
                        
                    },
                    
                    mounted() {
                        var me = this;
                        //预加载数据
                        if (this.dataRequest && this.dataRequest.length) {
                            var result = {};
                            this.loadRequestData(this.dataRequest, result, function(data) {
                                me.dataRequestObj = data;
                                // console.log(me.dataRequestObj);
                                
                                //预加载数据后给哪些字段设置options或formatterjson
                                me.treeData[0].children = me.dataRequestObj.out_data;
                                me.treeData[1].children = me.dataRequestObj.in_data;
                                me.initData();
                            });
                        }
                        else {
                            this.initData();
                        }
                        
                        
                    },
                    
                    methods:{
                        initData() {
                            var me = this;
                            
                            this.selectnodedata = me.treeData[0].children[0];
                            this.defaultexpandedkeys = [me.selectnodedata.id];
                            this.currentnodekey = me.selectnodedata.id;
                            // console.log(this.currentnode);
                            // console.log(me.selectnode);
                            // console.log(me.treeData[0].children[0]);
                            
                            var obj = {
                                data: me.selectnodedata,
                                node: {},
                                el: {},
                            };
                            
                            me.onNodeClick(obj);
                            
                            me.tableDataAfter();
                            
                            //字段数组转字段obj,目的为了筛选时获取字段属性
                            me.fieldsToFieldsObj();
                            
                            //设置字段事件
                            me.tableFieldClick();
                            
                            this.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
                                hideLoading();
                            });
                        },
                        
                        tableFieldClick() {
                            var me = this;
                            
                            //筛选字段事件设置
                            this.filterfieldClick = {
                                
                            };
                            
                            //表格字段事件设置
                            this.tablefieldClick = {
                                request: { //字段事件设置
                                    defaultval: {
                                        val: "查看",//空值时的显示值
                                        onclick: function(obj) {//默认值点击事件,此事件需要设置val才有效
                                            //查看详情
                                            me.showInfo_request(obj);
                                        }
                                    },
                                },
                                
                                return: { //字段事件设置
                                    defaultval: {
                                        val: "查看",//空值时的显示值
                                        onclick: function(obj) {//默认值点击事件,此事件需要设置val才有效
                                            //查看详情
                                            me.showInfo_return(obj);
                                        }
                                    },
                                },
                            };
                        },
                        
                        
                        showInfo_request(obj){
                            var me = this;
                            var config = {
                                totab: false, //true: 以Tab导航的方式打开
                                width: "900px",
                                height: "900px",
                                icon: "icon-product",
                                text: "新页面",
                                id: "new_window",//totab: true时需设置,用于判断是否已打开此页面
                                url: "module/system/page/sample/new_window.html",
                                data: {},
                                delta: {
                                    url: window.top.config.url_root + 'root/interface/getFile?token=' + Root.getToken() + '&id=' + obj.row.id +'&type=out'
                                },
                                callback: function(obj, callback) {
                                    if (callback) {
                                        callback();
                                    }
                                }
                            };
                            me.doPopupByPublic(config);
                            
                            // window.open(window.top.config.url_root + 'root/interface/getFile?token=admin&id=' + obj.row.id +'&type=out');
                        },
                        
                        // showInfo_request(obj){
                        //     window.open(window.top.config.url_root + 'root/interface/getFile?token=' + Root.getToken() + '&id=' + obj.row.id +'&type=out');
                        // },
                        
                        showInfo_return(obj){
                            var me = this;
                            var config = {
                                totab: false, //true: 以Tab导航的方式打开
                                width: "900px",
                                height: "900px",
                                icon: "icon-product",
                                text: "新页面",
                                id: "new_window",//totab: true时需设置,用于判断是否已打开此页面
                                url: "module/system/page/sample/new_window.html",
                                data: {},
                                delta: {
                                    url: window.top.config.url_root + 'root/interface/getFile?token=' + Root.getToken() + '&id=' + obj.row.id +'&type=in'
                                },
                                callback: function(obj, callback) {
                                    if (callback) {
                                        callback();
                                    }
                                }
                            };
                            me.doPopupByPublic(config);
                            
                            // window.open(window.top.config.url_root + 'root/interface/getFile?token=' + Root.getToken() + '&id=' + obj.row.id +'&type=in');
                        },
                        
                        node_isShow(data, isShow) {
                            if (this.$refs[data.id]) {
                                this.$refs[data.id].style.display = isShow ? '' : 'none';
                            }
                        },
                        
                        onNodeClick(obj) {
                            console.log(obj);
                            var data = obj.data, node = obj.node, el = obj.el;
                            var val = data.name;
                            if (data.children && data.children.length) {
                                val = "";
                                data.children.map(r=>{
                                    if (val == "") {
                                        val = r.name;
                                    }
                                    else {
                                        val += "','" + r.name;
                                    }
                                })
                            }
                            
                            // this.filterObjBydefault.category_name = val
                            this.selectedrow = data;
                            this.pagenum_p = 1;
                            this.getDataByNode();
                        },
                        
                        getDataByNode() {
                            var me = this;
                            if (!this.selectedrow.id) {
                                return
                            }
                            
                            var param_ = {
                                dataname: this.dataname_p,
                                attachMeta: false,
                                filter: "interface_id = '" + this.selectedrow.id + "'",
                                orderby: "create_time desc",
                                page: {
                                    pageno: this.pagenum_p,
                                    pagesize: this.pagesize_p
                                },
                            }
                            
                            Server.call("root/data/getEntitySet", param_, function(result) {
                                if (result && result.data && result.data.entityset) {
                                    var data_ = result.data.entityset;
                                    me.tableData_p = data_;
                                    me.total_p = result.data.page.recordcount;
                                }
                                else {
                                    me.total_p = 0;
                                }
                            })
                        },
                        
                        tableDataAfter_p() {
                            var me = this;
                            if (this.tableFields_p.length > 0){
                                this.isRefresh_p = false;
                                this.$nextTick(function(){
                                    this.isRefresh_p = true;
                                    this.$nextTick(function(){
                                        var el_list = [];
                                        me.tableHeight_p = me.treeHeight;
                                    })
                                })
                            }
                        },
                        
                        onQueryAfter() {
                            this.pagenum_p = 1;
                            this.tableData_p = [];
                            this.total_p = 0;
                        },
                        
                        getData_p(page) {
                            this.pagesize_p = page.pagesize;
                            this.pagenum_p = page.pagenum;
                            
                            this.getDataByNode();
                        },
                    }
                });
            };
            
            loadJsCss(function () {
                initVue();
            });
        </script>
        <style>
            /*  在vue.js中 v-cloak 这个指令是防止页面加载时出现 vuejs 的变量名而设计的 */
            [v-cloak] {
                display: none !important;
            }
            .el-tabs__nav-scroll {
                overflow: hidden;
                position: relative;
                padding-left: 20px;
            }
        </style>
        
    </head>
    
    <body style="margin: 0px;">
        <div v-cloak id="vbody">
            <div id="page_root">
                <div class="topbar">
                    <span>{{title}}</span>
                </div>
                
                <div class="h_dialog__body">
                    <div :style="{position: 'absolute', left: '10px', width: '320px', height: treeHeight + 'px', border: '1px solid #ccc' }">
                        <div style="height: 32px;line-height: 32px;border-bottom: 1px solid #ccc ;">
                            <span style="font-size: 14px;margin-left: 20px;">{{tree_title}}</span>
                        </div>
                        <div :style="{padding: '10px 0', height: treeHeight - 55 + 'px', overflow: 'auto'}">
                            <h-tree
                                v-if="isRefresh"
                                :tree-data="treeData"
                                :tree-txt-formatter="treeTxtFormatter"
                                :is-readonly="isTreeReadonly"
                                :default-expanded-keys="defaultexpandedkeys"
                                :currentnodekey="currentnodekey"
                                :default-expand-all="false"
                                
                                @node-click="onNodeClick">
                            </h-tree>
                        </div>
                    </div>
                    <div :style="{position: 'absolute', left: '340px', right: '10px', height: treeHeight + 'px', border: '1px solid #ccc'}">
                        <div>
                            <div style="height: 32px; border-bottom: 1px solid #aaa;">
                                <div class="table_title" style="float: left;">
                                    <span>接口日志</span>
                                </div>
                            </div>
                            <h-table
                                v-if="isRefresh_p"
                                ref="table_p"
                                :table-fields="tableFields_p" 
                                :table-data="tableData_p" 
                                :pagesize="pagesize_p"
                                :pagenum="pagenum_p"
                                :total="total_p"
                                :table-height="treeHeight - 112"
                                :is-highlight-row="true"
                                :table-field-click="tablefieldClick"
                                
                                v-on:get-data="getData_p">
                            </h-table>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        
        <div id="page_loading" style="position: absolute; top:0px; width: 100vw; height: 50vh;">
            <div class="spinner">
                <div class="cube1"></div>
                <div class="cube2"></div>
            </div>
        </div>
        
    </body>
</html>