-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpages.json
145 lines (144 loc) · 3.69 KB
/
pages.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path" : "pages/login/login",
"style" : {
"navigationBarTitleText": "uni-huanxin-im"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
}
}
,{
"path" : "pages/register/register",
"style" : {
"navigationBarTitleText": "uni-huanxin-im"
}
}
,{
"path" : "pages/login_token/login_token",
"style" : {
"navigationBarTitleText": "uni-huanxin-im"
}
}
,{
"path" : "pages/chat/chat",
"style" : {
"navigationBarTitleText": "聊天",
// "enablePullDownRefresh": true,
"scrollIndicator": "none",
"app-plus": {
"softinputNavBar": "none",
"scrollIndicator": "none"
}
}
}
,{
"path" : "pages/setting/setting",
"style" : {
"navigationBarTitleText": "设置"
}
}
,{
"path" : "pages/chatroom/chatroom",
"style" : {
"scrollIndicator": "none",
"navigationBarTitleText": "admin"
}
}
,{
"path" : "pages/groupChatRoom/groupChatRoom",
"style" : {}
}
,{
"path" : "pages/main/main",
"style" : {
"navigationBarTitleText": "通讯录"
}
}
,{
"path" : "pages/add_contact/add_contact",
"style" : {
"navigationBarTitleText": "添加好友"
}
}
,{
"path" : "pages/notification/notification",
"style" : {
"navigationBarTitleText": "通知"
}
}
,{
"path" : "pages/notification_friend/notification_friend",
"style" : {
"navigationBarTitleText": "好友请求"
}
}
,{
"path" : "pages/notification_group/notification_group",
"style" : {
"navigationBarTitleText": "群组邀请"
}
}
,{
"path" : "pages/setting/general",
"style" : {
"navigationBarTitleText": "通用"
}
}
,{
"path" : "pages/groups/groups",
"style" : {
"navigationBarTitleText": "群组"
}
}
,{
"path" : "pages/add_groups/add_groups",
"style" : {
"navigationBarTitleText": "新建群组"
}
}
,{
"path" : "pages/groupSetting/groupSetting",
"style" : {
"navigationBarTitleText": "群资料"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "IM",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#7A7E83",
"selectedColor": "#085AB8",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [{
"pagePath": "pages/chat/chat",
"iconPath": "static/images/[email protected]",
"selectedIconPath": "static/images/[email protected]",
"text": "聊天"
},{
"pagePath": "pages/main/main",
"iconPath": "static/images/[email protected]",
"selectedIconPath": "static/images/[email protected]",
"text": "通讯录"
},{
"pagePath": "pages/notification/notification",
"iconPath": "static/images/notice.png",
"selectedIconPath": "static/images/noticeActive.png",
"text": "通知"
},{
"pagePath": "pages/setting/setting",
"iconPath": "static/images/[email protected]",
"selectedIconPath": "static/images/[email protected]",
"text": "设置"
}]
}
}