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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
| import websocket from "./websocket.js"
| import positions from "./positions.js"
| import apis from "./apiConfig.js"
|
|
| import myAudio from './lid/myAudio.js'
| const state = {
| examDetail: {}, // 考试详情
| questionList: [], // 考试考题列表
| paperDetail: {},
| billFlag: false,
| queTypeArr: [0, 0, 0, 0, 0],
| loging: false,
| message: {
| useName: '过客',
| },
| roleid: '', //角色id
| Jurisdiction: '', //角色辖区
| logPath: '',
| piAPI: apis.api,
| // piAPI: 'http://106.225.193.35:83/api/',
| //piAPI: 'http://192.168.0.114:83/',
| //piAPI: 'http://106.225.193.35:83/api/',
| BaopiAPI: 'http://61.131.136.25:2080/api/',
| //BaopiAPI: 'http://192.168.0.114:81',
| firstlogin: null,
| 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"
| }
| ],
| gotuGrabOrders: false,
| Audio: new myAudio({
| uni: uni
| }), //语音控制
| ...websocket.state,
| ...positions.state,
| changeTaksState: true,
| }
|
| export default state
|
|