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