|
@@ -137,6 +137,7 @@
|
|
|
|
|
|
<el-table
|
|
|
:data="tableData"
|
|
|
+ v-loading="loading"
|
|
|
:header-cell-style="{ background: 'linear-gradient(white, #ccebf9)'}"
|
|
|
style="width: 100%"
|
|
|
height=520>
|
|
@@ -231,6 +232,7 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
total: 0,
|
|
|
+ loading: true,
|
|
|
showSearch: true,
|
|
|
isselect: true,
|
|
|
queryParams: {
|
|
@@ -349,7 +351,7 @@ export default {
|
|
|
// console.log(jsonArry);
|
|
|
this.tableData = response.rows;
|
|
|
this.total = response.total;
|
|
|
- console.log(response);
|
|
|
+ // console.log(response);
|
|
|
this.loading = false;
|
|
|
});
|
|
|
},
|