From d79888c1f695df52d7fd22efe742edfe3eb45a7f Mon Sep 17 00:00:00 2001 From: gongdi <410827992@qq.com> Date: Thu, 4 Nov 2021 16:47:52 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9B=86=E4=BC=98=E5=8C=96=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E9=98=B6=E6=AE=B5=E4=BB=A3=E7=A0=81=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../integrateOptimization/store/modules/userStore.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/integrateOptimization/store/modules/userStore.js b/src/views/integrateOptimization/store/modules/userStore.js index b2365f6..050d344 100644 --- a/src/views/integrateOptimization/store/modules/userStore.js +++ b/src/views/integrateOptimization/store/modules/userStore.js @@ -1,10 +1,10 @@ export default { namespaced: true,//namespaced:true,之后在不同页面中引入getter、actions、mutations时,需要加上所属的模块名 state: { - user: null, - roles: null, - menus: null, - portraitUrl:"" + user: null,//人员信息 + roles: null,//角色信息 + menus: null,//菜单信息 + portraitUrl: ""//头像路径 }, getter: { user: state => state.user,