平台前端架构启动后,在store里存储了很多信息,可以通过getter取到:
1)访问token
 import { getToken } from '@/utils/qlm_auth'
 getToken()可以获取该值
 为空则没有登录
2)    用户信息
 this.$store.getters.userId       // 用户ID
 this.$store.getters.userName     // 用户姓名
 this.$store.getters.nickName     // 昵称
 this.$store.getters.rolenames    // 享有的角色
 3)    登录用户的人员信息
 this.$store.getters.personInfo
 其中:
     orgId: "", //所在单位
     orgName: "",// 单位名称
     deptId: "", //所在部门
     deptName: "",// 部门名称
     telephone:"",// 电话
     mobile:"",    //手机
 4)    个性化配置
 this.$store.getters.personalization
 其中定义:
 pagesize:10    //分页时 每页数据量 每个操作员的屏幕大小不同,可以自行配置