Browse Source

dd

shibei_master
13176889840 3 years ago
parent
commit
0eb05f15c3
  1. 39
      src/views/modules/base/huji/immigration/edit.vue

39
src/views/modules/base/huji/immigration/edit.vue

@ -767,30 +767,33 @@ export default {
message: '手机号格式有误' message: '手机号格式有误'
}) })
} }
this.submit() if (this.fmData.isCHeck && this.userInfo && this.userInfo.resiHomeId) {
const { user } = this.$store.state
if (user.agencyId == this.userInfo.resiAgencyId) {
if (this.userInfo.resiHomeId !== this.fmData.homeId) {
this.$confirm('居民信息中房屋信息与当前选择房屋不一致,是否更新?', '提示', {
confirmButtonText: '更新',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.fmData.isReplace = '1'
this.submit()
}).catch(() => {
this.fmData.isReplace = '0'
this.submit()
});
return
}
}
} else this.submit()
} }
}) })
}, },
async submit() { async submit() {
if (this.fmData.isCHeck && this.userInfo && this.userInfo.resiHomeId) {
const { user } = this.$store.state
if (user.agencyId == this.userInfo.resiAgencyId) {
if (this.userInfo.resiHomeId !== this.fmData.homeId) {
this.$confirm('居民信息中房屋信息与当前选择房屋不一致,是否更新?', '提示', {
confirmButtonText: '更新',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.fmData.isReplace = '1'
}).catch(() => {
this.fmData.isReplace = '0'
});
return
}
}
}
let url = '' let url = ''
if (this.formType === 'add') { if (this.formType === 'add') {
url = '/epmetuser/icMoveIn/add' url = '/epmetuser/icMoveIn/add'

Loading…
Cancel
Save