|
|
@@ -153,6 +153,32 @@
|
|
|
scrolling="no"></iframe>
|
|
|
</div>
|
|
|
</el-drawer>
|
|
|
+ <div
|
|
|
+ v-if="lutloading"
|
|
|
+ style="
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background-color: #fff;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ z-index: 9999;
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ style="display: flex; flex-direction: column; align-items: center"
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ style="height: 75px; transform: scale(2)"
|
|
|
+ src="../assets/img/cocoloading.gif"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ <div style="color: #0354d7">{{ lang.Loadingdes }}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
@@ -233,6 +259,7 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
+ lutloading:false,
|
|
|
xiaokeDia: false,
|
|
|
Full_Screen:false,
|
|
|
fullScreen:require('../assets/img/fullScreen.png'),
|
|
|
@@ -446,7 +473,7 @@ export default {
|
|
|
type: "warning",
|
|
|
})
|
|
|
.then(async () => {
|
|
|
- this.loading = true;
|
|
|
+ this.lutloading = true;
|
|
|
loginOut()
|
|
|
.then(async () => {
|
|
|
this.$message({
|
|
|
@@ -454,6 +481,8 @@ export default {
|
|
|
type: "success",
|
|
|
});
|
|
|
await this.logout();
|
|
|
+ this.lutloading = false;
|
|
|
+
|
|
|
// this.$router.push("/login");
|
|
|
})
|
|
|
.catch((err) => {
|