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