|
@@ -1,7 +1,13 @@
|
|
|
<template>
|
|
|
<div id="form-1">
|
|
|
<el-row>
|
|
|
- <el-col :span="24" class="main animate__animated animate__backInRight">
|
|
|
+ <el-col
|
|
|
+ :span="24"
|
|
|
+ class="main animate__animated animate__backInRight"
|
|
|
+ v-loading="loading"
|
|
|
+ element-loading-text="拼命加载中"
|
|
|
+ element-loading-spinner="el-icon-loading"
|
|
|
+ >
|
|
|
<el-col class="top-btn">
|
|
|
<el-button type="primary" size="mini" @click="toBack()">返回</el-button>
|
|
|
</el-col>
|
|
@@ -152,6 +158,7 @@ export default {
|
|
|
shopList: [],
|
|
|
activit: {},
|
|
|
active: 1,
|
|
|
+ loading: true,
|
|
|
};
|
|
|
},
|
|
|
async created() {
|
|
@@ -237,6 +244,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ this.loading = false;
|
|
|
}
|
|
|
},
|
|
|
async exam(status) {
|