12345678910 |
- const getters = {
- codeNumber: state => state.app.codeNumber, //获取验证码倒计时-防止刷新页面重置倒计时
- user: state => state.app.user, //用户基本信息
- organization: state => state.app.organization, //所属组织信息
- project: state => state.app.project, //项目
- identity: state => state.app.identity, //角色
- coordinates: state => state.app.coordinates, //经纬度
- activeCity: state => state.app.activeCity, //位置信息
- }
- export default getters
|