This commit is contained in:
Captain.B 2020-05-18 14:48:25 +08:00
parent 7638513556
commit a168f9e17a
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<template>
<ms-container>
<ms-main-container>
<ms-main-container v-loading="result.loading">
<el-row :gutter="20">
<el-col :span="12">
<ms-performance-report-recent-list/>
@ -36,10 +36,11 @@
data() {
return {
values: [],
result: {},
}
},
mounted() {
this.$get('/performance/dashboard/tests', response => {
this.result = this.$get('/performance/dashboard/tests', response => {
this.values = response.data;
});
},