|
@@ -6,8 +6,8 @@
|
|
:visible.sync="show"
|
|
:visible.sync="show"
|
|
direction="rtl"
|
|
direction="rtl"
|
|
>
|
|
>
|
|
- <div class="pa-3">
|
|
|
|
- <SolutionDetails v-if="loading" :item-data="itemData"></SolutionDetails>
|
|
|
|
|
|
+ <div class="pa-3" v-loading="loading">
|
|
|
|
+ <SolutionDetails :item-data="itemData"></SolutionDetails>
|
|
</div>
|
|
</div>
|
|
</el-drawer>
|
|
</el-drawer>
|
|
</div>
|
|
</div>
|
|
@@ -58,6 +58,8 @@ export default {
|
|
}
|
|
}
|
|
} catch (error) {
|
|
} catch (error) {
|
|
this.$message.error(error)
|
|
this.$message.error(error)
|
|
|
|
+ } finally {
|
|
|
|
+ this.loading = false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|