1、监管端、企业端地图信息更新

20240528Test
liujun 2024-04-24 17:20:05 +08:00
parent 0fba5ebca5
commit dccc44e644
1 changed files with 6 additions and 2 deletions

View File

@ -94,8 +94,12 @@ export default {
corpId: this.corpId corpId: this.corpId
} }
).then((data) => { ).then((data) => {
this.info = data.userInfo if (data.code === 9999) {
this.otherInfo = data.statusInfo this.$message.success(data.msg)
} else {
this.info = data.userInfo
this.otherInfo = data.statusInfo
}
}).catch((e) => { }).catch((e) => {
}) })
} }