hadoop.vue
1.3 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
<template xmlns:el-col="http://www.w3.org/1999/html">
<div>
<h4>接口调用次数统计(每小时更新一次,统计最近100个小时的数据)</h4>
<ve-line :data="chartData"></ve-line>
</div>
</template>
<script>
export default {
data() {
return {
hadoopApis: [],
chartData: {
columns: ["时间", "总次数", "成功次数", "失败次数"],
rows: []
}
}
},
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'
}
}
this.$http.get('/tool/queryhadoopTotal?'+this.$qs.stringify({
}),config).then((res)=>{
console.log(res.data)
this.chartData.rows=res.data.hadoopApis
loading.close();
}).catch(error=>{
console.log(error);
loading.close();
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
type: 'error'
});
})
}
}
}
</script>