-
Notifications
You must be signed in to change notification settings - Fork 14
/
app.json
140 lines (140 loc) · 4.64 KB
/
app.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
{
"lazyCodeLoading": "requiredComponents",
"pages": [
"example/index/index",
"example/about/index",
"example/category/index",
"example/template/index",
"example/icon/index",
"example/button/index",
"example/avatar/index",
"example/badge/index",
"example/tag/index",
"example/loading/index",
"example/loading/launch",
"example/divider/index",
"example/input/index",
"example/textarea/index",
"example/radio/index",
"example/checkbox/index",
"example/switch/index",
"example/picker/index",
"example/datepicker/index",
"example/imagepicker/index",
"example/search/index",
"example/list/index",
"example/grid/index",
"example/card/index",
"example/tab/index",
"example/collapse/index",
"example/empty/index",
"example/empty/page",
"example/empty/search",
"example/error/index",
"example/error/500",
"example/error/404",
"example/error/403",
"example/error/offline",
"example/toast/index",
"example/dialog/index",
"example/actionsheet/index",
"example/popup/index",
"example/result/index",
"example/result/success",
"example/result/error",
"example/result/nullIcon",
"example/result/custom",
"example/swiper/index",
"example/swiper/splashScreen",
"example/swiper/fullpage",
"example/backtop/index",
"example/backtop/page",
"example/loadmore/index",
"example/loadmore/default",
"example/loadmore/custom",
"example/sticky/index",
"example/sticky/base/index",
"example/sticky/offset/index",
"example/sticky/container/index",
"example/sticky/scroll-view/index",
"example/sticky/tabs/index",
"example/sticky/table/index",
"example/sticky/complex/index",
"example/result/custom-btn",
"example/example/mixin/index",
"example/example/comment/index",
"example/example/tabs/index",
"example/feedbackBar/index",
"example/navbar/index",
"example/navbar/back",
"example/navbar/auto",
"example/navbar/custom",
"example/album/index",
"example/loading/global",
"example/example/form/index",
"example/example/form2/index",
"example/example/form3/index",
"example/switchbar/index",
"example/indexlist/index",
"example/indexlist/default/index",
"example/indexlist/avatar/index",
"example/indexlist/title/index",
"example/indexlist/desc/index",
"example/indexlist/hasDelete/index",
"example/indexlist/hasSelect/index",
"example/indexlist/search/index",
"example/loading/status",
"example/drawer/index",
"example/backtop/page2",
"example/tab/left",
"example/dropdown/index",
"example/comment/index",
"example/feed/index",
"example/popover/index",
"example/areapicker/index",
"example/steps/index",
"example/progress/index"
],
"usingComponents": {
"mt-loading": "meet-ui-miniapp/loading",
"mt-empty": "meet-ui-miniapp/empty",
"mt-error": "meet-ui-miniapp/error",
"mt-cell-group": "meet-ui-miniapp/cell-group",
"mt-cell": "meet-ui-miniapp/cell",
"mt-dialog": "meet-ui-miniapp/dialog",
"mt-toast": "meet-ui-miniapp/toast",
"mt-icon": "meet-ui-miniapp/icon",
"mt-button": "meet-ui-miniapp/button",
"mt-avatar": "meet-ui-miniapp/avatar",
"mt-badge": "meet-ui-miniapp/badge"
},
"window": {
"backgroundColor": "#ffffff",
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#ffffff",
"navigationBarTitleText": "MEET UI",
"navigationBarTextStyle": "black"
},
"tabBar": {
"color": "#808080",
"selectedColor": "#333333",
"backgroundColor": "#FFFFFF",
"borderStyle": "black",
"list": [
{
"pagePath": "example/index/index",
"text": "组件",
"iconPath": "/example/images/tab1.png",
"selectedIconPath": "/example/images/tab1_a.png"
},
{
"pagePath": "example/about/index",
"text": "帮助",
"iconPath": "/example/images/tab2.png",
"selectedIconPath": "/example/images/tab2_a.png"
}
]
},
"style": "v2",
"sitemapLocation": "sitemap.json"
}