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()
},
onShow() {
this.appId = this.$route.query.appId
if (this.isEdit) {
document.title = "编辑人员"
this.appId = this.$route.query.appId
this.getDetail()
} else {
document.title = '新增人员'
if (this.appId) {
if (this.$route.query.appId) {
this.appId = this.$route.query.appId
this.typeConfirm([this.$route.query])
}
}
},
methods: {
...mapActions(['selectEnterpriseContact']),