From 72248fee119503136fe10660917af988b1263293 Mon Sep 17 00:00:00 2001 From: liuye Date: Tue, 2 Jul 2024 10:01:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=AA=E4=BA=BA=E4=B8=AD=E5=BF=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/project/fengdu/AppMine/AppMine.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/project/fengdu/AppMine/AppMine.vue b/src/project/fengdu/AppMine/AppMine.vue index 63a34ce..51b212c 100644 --- a/src/project/fengdu/AppMine/AppMine.vue +++ b/src/project/fengdu/AppMine/AppMine.vue @@ -170,7 +170,12 @@ export default { } if (type == 'phone') { //我的门店验证手机号 if (!this.user.phone) { - this.$linkTo('./userInfo') + this.$dialog.confirm({ + content: '您只有完成信息认证后,才可进行相关操作。', + confirmText: '去认证' + }).then(() => { + this.$linkTo('./userInfo') + }) } else { this.$linkTo(url) }