Commit 045229c2 by lanyulei

fix: 修复工单处理页面忽闪的问题。

parent b5b9f575
Showing with 5 additions and 0 deletions
<template> <template>
<div class="app-container"> <div class="app-container">
<div v-if="isLoadingStatus" />
<div v-else>
<el-card class="box-card"> <el-card class="box-card">
<div class="text item"> <div class="text item">
<el-steps v-if="currentNode.clazz !== undefined && currentNode.clazz !== null && currentNode.clazz !== ''" :active="activeIndex" finish-status="success"> <el-steps v-if="currentNode.clazz !== undefined && currentNode.clazz !== null && currentNode.clazz !== ''" :active="activeIndex" finish-status="success">
...@@ -161,6 +163,7 @@ ...@@ -161,6 +163,7 @@
</div> </div>
</el-card> </el-card>
</div> </div>
</div>
</template> </template>
<script> <script>
...@@ -183,6 +186,7 @@ import { mapGetters } from 'vuex' ...@@ -183,6 +186,7 @@ import { mapGetters } from 'vuex'
export default { export default {
data() { data() {
return { return {
isLoadingStatus: true,
currentNode: { currentNode: {
hideTpls: null, hideTpls: null,
writeTpls: null writeTpls: null
...@@ -271,6 +275,7 @@ export default { ...@@ -271,6 +275,7 @@ export default {
break break
} }
} }
this.isLoadingStatus = false
this.getAlertMessage() this.getAlertMessage()
}) })
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment