From bd7617d399dfacac511c82d962849542c3939e69 Mon Sep 17 00:00:00 2001 From: wally <18603454788@163.com> Date: Thu, 5 Mar 2020 22:43:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E4=BA=86=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E7=9A=84=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- store/modules/user/actions.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/store/modules/user/actions.js b/store/modules/user/actions.js index c0f1623..8f216c2 100644 --- a/store/modules/user/actions.js +++ b/store/modules/user/actions.js @@ -1,5 +1,6 @@ import { showModal } from 'utils/ui'; import { mpLogin, signIn } from 'utils/user'; +import { GET_USER_INFO, SUBMIT_USER_INFO } from 'api/user'; const actions = { // 登录 @@ -14,7 +15,7 @@ const actions = { resolve(data); }) .catch(err => { - showModal(err.msg || '登录失败'); + // showModal(err.msg || '登录失败'); reject(err); }); // #endif