-
Notifications
You must be signed in to change notification settings - Fork 0
/
pages.json
executable file
·120 lines (120 loc) · 2.51 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
{
"easycom": {
"^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
},
"pages": [
{
"path": "pages/dashboard/index",
"style": {
"navigationBarTitleText": "仪表盘",
"enablePullDownRefresh": true
}
},
{
"path": "pages/center/index",
"style": {
"navigationBarTitleText": ""
}
},
{
"path": "pages/user/login",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
},
{
"path": "pages/record/index",
"style": {
"navigationBarTitleText": "记录列表",
"enablePullDownRefresh": true
}
},
{
"path": "pages/record/test",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
},
{
"path": "pages/record/create-now",
"style": {
"navigationBarTitleText": "快速记账",
"enablePullDownRefresh": false
}
},
{
"path": "pages/record/create",
"style": {
"navigationBarTitleText": "经典记账",
"enablePullDownRefresh": false
}
},
{
"path": "pages/analysis/index",
"style": {
"navigationBarTitleText": "统计分析",
"enablePullDownRefresh": false
}
},
{
"path": "pages/account/index",
"style": {
"navigationBarTitleText": "账户列表",
"enablePullDownRefresh": true
}
},
{
"path": "pages/account/create",
"style": {
"navigationBarTitleText": "编辑账户",
"enablePullDownRefresh": false
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uView",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#909399",
"selectedColor": "#303133",
"borderStyle": "black",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/dashboard/index",
"iconPath": "static/dashboard.png",
"selectedIconPath": "static/dashboard-fill.png",
"text": "仪表盘"
},
{
"pagePath": "pages/record/index",
"iconPath": "static/database.png",
"selectedIconPath": "static/database-fill.png",
"text": "记录"
},
{
"pagePath": "pages/record/create-now",
"iconPath": "static/plus-circle.png",
"selectedIconPath": "static/plus-circle-fill.png",
"text": "记账"
},
{
"pagePath": "pages/account/index",
"iconPath": "static/wallet.png",
"selectedIconPath": "static/wallet-fill.png",
"text": "账户"
},
{
"pagePath": "pages/center/index",
"iconPath": "static/compass.png",
"selectedIconPath": "static/compass-fill.png",
"text": "更多"
}
]
}
}