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() } }) },