panlei
2020-03-13 3bd017317fdbbe13a1742f5db75f4196e482c504
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import AuthData from './Pool/AuthData';
 
/* eslint-disable */
const onlyAuthData = new AuthData
 
 
// 定义全局状态信息
const state = {
    projectName: 'school_district_center',
    menuName: 'ACTION', // 菜单模块 module(默认为空查全部) SYSTEM 系统管理, VISITOR 进出入管理, CHECK 学区安全上报
    loading: false,
    isLoginout: false,
    userInfo: null
}
 
const mixin = {
    data() {
        return {
            AuthData: onlyAuthData,
            guid: 1,
            state: state
        };
    },
};
export default mixin;