导入未成功时加遮罩

This commit is contained in:
qq787203167
2022-05-18 18:18:25 +08:00
parent c6904eb63b
commit faa7914004
4 changed files with 51 additions and 1 deletions
@@ -83,8 +83,15 @@
let query = {
actiProcInstId: this.$route.query.actiProcInstId
}
this.loading = true
getAction('/wkflow/processHistoryEO/list', query).then((res) => {
this.dataSource = res
if (res.success) {
this.dataSource = res.result || []
this.loading = false
} else {
this.dataSource = []
this.loading = false
}
})
}
}