接口测试首页刷新
This commit is contained in:
parent
e7d0ab6479
commit
5bb2e223a8
|
@ -55,6 +55,9 @@
|
|||
|
||||
created() {
|
||||
this.search();
|
||||
},
|
||||
activated() {
|
||||
this.search();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -37,11 +37,19 @@
|
|||
result: {},
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.result = this.$get('/api/report/dashboard/tests', response => {
|
||||
this.values = response.data;
|
||||
});
|
||||
activated() {
|
||||
this.getValues();
|
||||
},
|
||||
mounted() {
|
||||
this.getValues();
|
||||
},
|
||||
methods: {
|
||||
getValues() {
|
||||
this.result = this.$get('/api/report/dashboard/tests', response => {
|
||||
this.values = response.data;
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -56,6 +56,9 @@
|
|||
|
||||
created() {
|
||||
this.search();
|
||||
},
|
||||
activated() {
|
||||
this.search();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
Loading…
Reference in New Issue