BUG 28206

This commit is contained in:
aixianling
2022-03-15 09:31:04 +08:00
parent 0bd5c3c82a
commit 2082eb6121

View File

@@ -213,18 +213,17 @@ export default {
this.getType() this.getType()
}, },
onShow() { onShow() {
this.appId = this.$route.query.appId
if (this.isEdit) { if (this.isEdit) {
document.title = "编辑人员" document.title = "编辑人员"
this.appId = this.$route.query.appId
this.getDetail() this.getDetail()
} else { } else {
document.title = '新增人员' document.title = '新增人员'
if (this.appId) { if (this.$route.query.appId) {
this.appId = this.$route.query.appId
this.typeConfirm([this.$route.query]) this.typeConfirm([this.$route.query])
} }
} }
}, },
methods: { methods: {
...mapActions(['selectEnterpriseContact']), ...mapActions(['selectEnterpriseContact']),