|
@@ -1,18 +1,69 @@
|
|
|
{
|
|
|
- "pages": [{
|
|
|
- "path": "pages/index/index",
|
|
|
- "style": {
|
|
|
- "navigationBarTitleText": "uni-app",
|
|
|
- "navigationStyle": "custom"
|
|
|
- }
|
|
|
- }],
|
|
|
- "globalStyle": {
|
|
|
- "navigationBarTextStyle": "black",
|
|
|
- "navigationBarTitleText": "uni-app",
|
|
|
- "navigationBarBackgroundColor": "#F8F8F8",
|
|
|
- "backgroundColor": "#F8F8F8",
|
|
|
- "app-plus": {
|
|
|
- "background": "#efeff4"
|
|
|
- }
|
|
|
+ "pages": [
|
|
|
+ {
|
|
|
+ "path": "pages/home/index",
|
|
|
+ "style": {
|
|
|
+ "navigationStyle": "custom"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "path": "pages/learn/index",
|
|
|
+ "style": {
|
|
|
+ "navigationStyle": "custom"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "path": "pages/challenge/index",
|
|
|
+ "style": {
|
|
|
+ "navigationStyle": "custom"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "path": "pages/mine/index",
|
|
|
+ "style": {
|
|
|
+ "navigationStyle": "custom"
|
|
|
+ }
|
|
|
}
|
|
|
+ ],
|
|
|
+ "globalStyle": {
|
|
|
+ "navigationBarTextStyle": "black",
|
|
|
+ "navigationBarTitleText": "uni-app",
|
|
|
+ "navigationBarBackgroundColor": "#F8F8F8",
|
|
|
+ "backgroundColor": "#F8F8F8",
|
|
|
+ "app-plus": {
|
|
|
+ "background": "#efeff4"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "tabBar": {
|
|
|
+ "color": "#7A7E83",
|
|
|
+ "selectedColor": "#3cc51f",
|
|
|
+ "borderStyle": "black",
|
|
|
+ "backgroundColor": "#ffffff",
|
|
|
+ "list": [
|
|
|
+ {
|
|
|
+ "pagePath": "pages/home/index",
|
|
|
+ "iconPath": "static/icons/c1.png",
|
|
|
+ "selectedIconPath": "static/icons/c2.png",
|
|
|
+ "text": "首页"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "pagePath": "pages/learn/index",
|
|
|
+ "iconPath": "static/icons/c1.png",
|
|
|
+ "selectedIconPath": "static/icons/c2.png",
|
|
|
+ "text": "学习本"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "pagePath": "pages/challenge/index",
|
|
|
+ "iconPath": "static/icons/c1.png",
|
|
|
+ "selectedIconPath": "static/icons/c2.png",
|
|
|
+ "text": "挑战"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "pagePath": "pages/mine/index",
|
|
|
+ "iconPath": "static/icons/c1.png",
|
|
|
+ "selectedIconPath": "static/icons/c2.png",
|
|
|
+ "text": "我的"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
}
|