-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpages.json
More file actions
executable file
·126 lines (126 loc) · 2.83 KB
/
Copy pathpages.json
File metadata and controls
executable file
·126 lines (126 loc) · 2.83 KB
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
{
"pages": [{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "房间",
"navigationStyle": "custom",
"navigationBarTextStyle": "black",
"app-plus": {
"softinputMode": "adjustPan",
"titleNView": {
"buttons": [{
"text": "我的",
"fontSize": "16px",
"float": "left",
"width": "60px"
}, {
"text": "换房",
"fontSize": "16px",
"float": "right",
"width": "60px"
}]
}
}
}
}, {
"path": "pages/room/index",
"style": {
"navigationBarTitleText": "房间",
// "navigationStyle": "custom",
"navigationBarTextStyle": "black",
"app-plus": {
"titleNView": {
"buttons": [{
"text": "我的",
"fontSize": "16px",
"float": "left",
"width": "60px"
}, {
"text": "换房",
"fontSize": "16px",
"float": "right",
"width": "60px"
}]
}
}
}
}, {
"path": "pages/room/select",
"style": {
"navigationBarTitleText": "热门房间",
// "navigationStyle": "custom",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": true,
"app-plus": {
"titleNView": {
"buttons": [{
"text": "创建",
"fontSize": "16px",
"float": "right",
"width": "60px"
}]
}
}
}
}, {
"path": "pages/room/online",
"style": {
"navigationBarTitleText": "房间在线用户",
// "navigationStyle": "custom",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": true
}
}, {
"path": "pages/user/login",
"style": {
"navigationBarTitleText": " "
}
}, {
"path": "pages/user/index",
"style": {
"navigationBarTitleText": "个人中心"
}
}, {
"path": "pages/user/motify",
"style": {
"navigationBarTitleText": "修改资料"
}
}, {
"path": "pages/song/my",
"style": {
"navigationBarTitleText": "我点过的歌",
"enablePullDownRefresh": true
}
}, {
"path": "pages/song/search",
"style": {
"navigationBarTitleText": "歌曲搜索",
"enablePullDownRefresh": true
}
}, {
"path": "pages/song/list",
"style": {
"navigationBarTitleText": "接下来要播放",
"enablePullDownRefresh": true
}
}],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "UniAppDemo",
"navigationBarBackgroundColor": "#F5F5F5",
"backgroundColor": "#F5F5F5",
// "backgroundTextStyle": "",
"app-plus": {
"softinputNavBar": "none",
"softinputMode": "adjustResize"
}
},
"condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数,在页面的onLoad函数里面得到
}]
}
}