BUG 28330

This commit is contained in:
aixianling
2022-03-17 18:19:05 +08:00
parent abc8e3a9b7
commit 1fa526786d

View File

@@ -207,7 +207,7 @@ export default {
document.title = "编辑人员"
if (!this.appId) {
let {appId: value} = this.$route.query
Promise.all([this.getDetail(), this.typeConfirm([{value}])]).then(() => this.$forceUpdate())
this.typeConfirm([{value}]).then(() => this.getDetail())
}
} else {
document.title = '新增人员'
@@ -476,6 +476,7 @@ export default {
}).then(res => {
if (res?.data) {
this.formData = res.data
this.$forceUpdate()
}
}) : Promise.resolve()
}