pages.json
3.2 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"easycom": {
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
},
"pages": [
{
"path": "pages/index/index", // 首页
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/index/landDetail", // 土地详情
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/index/sellerMessageDetail", // 卖家信息详细
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/index/sellerRelease", // 卖家发布
"style": {
"navigationBarTitleText": "卖家发布"
}
},
{
"path": "pages/index/landRelease", // 土地发布
"style": {
"navigationBarTitleText": "土地发布"
}
},
{
"path": "pages/index/buyersRelease", // 买家发布
"style": {
"navigationBarTitleText": "买家发布"
}
},
{
"path": "pages/index/buyersReleased", // 买家发布之后
"style": {
"navigationBarTitleText": "买家发布"
}
},
{
"path": "pages/index/auditPage", // 审核页面
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/index/richText",
"style": {
"navigationBarTitleText": "富文本"
}
},
{
"path": "pages/message/index",
"style": {
"navigationBarTitleText": "资讯",
"navigationBarBackgroundColor": "#62cdce"
}
},
{
"path": "pages/mine/index",
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/mine/mineInfo", // 个人资料
"style": {
"navigationBarTitleText": "个人资料"
}
},
{
"path": "pages/mine/wallet", // 我的钱包
"style": {
"navigationBarTitleText": "我的钱包",
"navigationBarBackgroundColor": "#62cdce",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/mine/residueWallet", // 余额明细
"style": {
"navigationBarTitleText": "余额明细",
"navigationBarBackgroundColor": "#62cdce",
"navigationBarTextStyle": "white"
}
},
{
"path": "pages/mine/myRelease", // 我的发布
"style": {
"navigationBarTitleText": "我的发布",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/mine/myExpect", // 我的想看
"style": {
"navigationBarTitleText": "我的想看",
"navigationBarBackgroundColor": "#FFFFFF"
}
},
{
"path": "pages/mine/detail", // 用户协议和隐私政策
"style": {
"navigationStyle": "custom"
}
},
{
"path": "pages/login/login", // 登录页
"style": {
"navigationStyle": "custom"
}
}
],
"tabBar": {
"iconfontSrc": "",
"selectedColor":"#62CDCE",
"list": [
{
"pagePath": "pages/index/index",
"text": "首页"
// "iconPath": "/static/tabBar/home.png",
// "selectedIconPath": "/static/tabBar/home1.png"
},
{
"pagePath": "pages/message/index",
"text": "助农资讯"
// "iconPath": "/static/tabBar/message.png",
// "selectedIconPath": "/static/tabBar/message1.png"
},
{
"pagePath": "pages/mine/index",
"text": "个人中心"
// "iconPath": "/static/tabBar/mine.png",
// "selectedIconPath": "/static/tabBar/mine1.png"
}
]
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
}
}