+
liuyg
2021-11-03 a63c2a38c1de7f9131c81bdcdcbe6a84b9ca6113
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const state = {
    loging: false,
    message: {
        useName: '过客',
    },
    logPath: '',
    // piAPI: 'http://223.82.109.183:2082/api/',
    // piAPI: 'http://192.168.0.107:85', //唐
    piAPI: '/api', //本地转发
    //piAPI: 'http://s16s652780.51mypc.cn/api/',
    // piAPI: 'http://localhost:83/',
    //piAPI: 'http://192.168.0.111:83/',
    puserName: '',
    puserID: '',
    puserIphone: '',
    avatar: "../../static/logo.png",
    UserData: {},
    tabbar: [{
            pagePath: "/pages/home/home",
            text: "首页",
            iconPath: "/static/tabbar/index01.png",
            selectedIconPath: "/static/tabbar/index02.png"
        },
        {
            pagePath: "/pages/article/article",
            text: "资讯",
            iconPath: "/static/tabbar/article.png",
            selectedIconPath: "/static/tabbar/articleH.png"
        },
        {
            pagePath: "/pages/issue/issue",
            iconPath: "/static/tabbar/addIcon.png",
            selectedIconPath: "/static/tabbar/addSelectedIcon.png",
            text: "发布",
            midButton: true,
        },
        {
            pagePath: "/pages/business/business",
            text: "工作台",
            iconPath: "/static/tabbar/workbench.png",
            selectedIconPath: "/static/tabbar/workbenchH.png"
        },
        {
            pagePath: "/pages/myself/myself",
            text: "我的",
            iconPath: "/static/tabbar/my.png",
            selectedIconPath: "/static/tabbar/my-blue.png"
        }
    ]
}
 
export default state