bizDataCount.vue
1.91 KB
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
<template xmlns:el-col="http://www.w3.org/1999/html">
<div>
<br/>
<span>根据接口名查询请求参数</span>
<el-table
:data="bizDataCounts"
border
style="width: 100%"
:header-cell-style="{background: 'deepskyblue', color: 'snow'}">
<el-table-column
prop="bizData"
label="请求参数"
min-width="4">
</el-table-column>
<el-table-column
prop="sumcount"
label="接口累计调用次数"
min-width="1">
</el-table-column>
<el-table-column
prop="maxtime"
label="最近一次调用时间"
min-width="2">
</el-table-column>
</el-table>
</div>
</template>
<script>
export default {
data() {
return {
name: this.$route.query.name,
beginDate: this.$route.query.beginDate,
endDate: this.$route.query.endDate,
bizDataCounts: []
}
},
mounted() {
this.activity()
},
methods: {
activity() {
const loading = this.$loading({
lock: true,
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
}
console.log(this.name);
this.$http.get('/bigdata/bizDataCount?'+this.$qs.stringify({
method: this.name,
beginDate: this.beginDate,
endDate: this.endDate
}),config).then((res)=>{
console.log(res.data)
this.bizDataCounts=res.data.bizDataCounts
loading.close();
}).catch(error=>{
console.log(error);
loading.close();
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
type: 'error'
});
})
}
}
}
</script>