From d94c38b8178d47056e69ba2fad759fddea0f8478 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Fri, 27 May 2022 14:45:09 +0800 Subject: [PATCH] bug --- src/store/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/store/index.js b/src/store/index.js index a8fb16e4..f0856646 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -208,10 +208,9 @@ const store = new Vuex.Store({ }, getAccount(state) { //获取企业微信后台账号信息 - return http.post("/admin/user/detail-phone").then(res => { + return http.post("/admin/user/info").then(res => { if (res?.code == 0) { state.commit('setUser', res.data) - action.getGridInfo() } }) },