From dccc44e64430b1a7f24123eb9fc491da59a39d99 Mon Sep 17 00:00:00 2001 From: liujun Date: Wed, 24 Apr 2024 17:20:05 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E7=9B=91=E7=AE=A1=E7=AB=AF=E3=80=81?= =?UTF-8?q?=E4=BC=81=E4=B8=9A=E7=AB=AF=E5=9C=B0=E5=9B=BE=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/map/dialog/peoplePositionYGS.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/map/dialog/peoplePositionYGS.vue b/src/views/map/dialog/peoplePositionYGS.vue index 71c5673..503776f 100644 --- a/src/views/map/dialog/peoplePositionYGS.vue +++ b/src/views/map/dialog/peoplePositionYGS.vue @@ -94,8 +94,12 @@ export default { corpId: this.corpId } ).then((data) => { - this.info = data.userInfo - this.otherInfo = data.statusInfo + if (data.code === 9999) { + this.$message.success(data.msg) + } else { + this.info = data.userInfo + this.otherInfo = data.statusInfo + } }).catch((e) => { }) }