性能测试跳转刷新
This commit is contained in:
parent
354e3f9907
commit
7e6fecc09f
|
@ -53,6 +53,9 @@
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.search();
|
this.search();
|
||||||
|
},
|
||||||
|
activated() {
|
||||||
|
this.search();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -42,10 +42,18 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.result = this.$get('/performance/dashboard/tests', response => {
|
this.getValues();
|
||||||
this.values = response.data;
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
activated() {
|
||||||
|
this.getValues();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
getValues() {
|
||||||
|
this.result = this.$get('/performance/dashboard/tests', response => {
|
||||||
|
this.values = response.data;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -54,6 +54,9 @@
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.search();
|
this.search();
|
||||||
|
},
|
||||||
|
activated() {
|
||||||
|
this.search();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -122,6 +122,9 @@
|
||||||
}
|
}
|
||||||
this.list();
|
this.list();
|
||||||
},
|
},
|
||||||
|
activated() {
|
||||||
|
this.list();
|
||||||
|
},
|
||||||
watch: {
|
watch: {
|
||||||
'$route'(to) {
|
'$route'(to) {
|
||||||
if (this.$route.path.split('/')[2] === 'project' &&
|
if (this.$route.path.split('/')[2] === 'project' &&
|
||||||
|
|
Loading…
Reference in New Issue