12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "app-plus": {
- "titleNView": false,
- "bounce": "none",
- "navigationStyle": "custom"
- }
- }
- },
- {
- "path": "pages/dream/index",
- "style": {
- "app-plus": {
- "titleNView": false,
- "bounce": "none",
- "navigationStyle": "custom"
- }
- }
- },
- {
- "path" : "pages/dream/view",
- "style": {
- "app-plus": {
- "titleNView": false,
- "bounce": "none",
- "navigationStyle": "custom"
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarBackgroundColor": "#3c64c9",
- "navigationBarTitleText" : "幻境",
- "enablePullDownRefresh": true,
- "scrollIndicator": "none",
- "navigationStyle": "default",
- "app-plus": {
- "pullToRefresh": {
- "support": true,
- "color": "#3c64c9",
- "style": "default"
- }
- }
- },
- "tabBar": {
- "color": "#878d9d",
- "selectedColor": "#2a54a0",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "height": "50px",
- "fontSize": "10px",
- "iconWidth": "24px",
- "spacing": "3px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/icon/nav01_a.png",
- "selectedIconPath": "static/icon/nav01.png",
- "text": "幻"
- },
- {
- "pagePath": "pages/im/explain",
- "iconPath": "static/icon/nav02_a.png",
- "selectedIconPath": "static/icon/nav02.png",
- "text": "镜"
- },
- {
- "pagePath": "pages/ucenter/ucenter",
- "iconPath": "static/icon/nav03_a.png",
- "selectedIconPath": "static/icon/nav03.png",
- "text": "灵"
- }
- ]
-
- },
- // 自动加载组件
- "easycom": {
- "custom": {
- "grace(.*)": "@/lib/graceUI/components/grace$1.vue"
- }
- }
- }
|