loading
This commit is contained in:
parent
7638513556
commit
a168f9e17a
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<ms-container>
|
<ms-container>
|
||||||
<ms-main-container>
|
<ms-main-container v-loading="result.loading">
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<ms-performance-report-recent-list/>
|
<ms-performance-report-recent-list/>
|
||||||
|
@ -36,10 +36,11 @@
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
values: [],
|
values: [],
|
||||||
|
result: {},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$get('/performance/dashboard/tests', response => {
|
this.result = this.$get('/performance/dashboard/tests', response => {
|
||||||
this.values = response.data;
|
this.values = response.data;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue