123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- {
- "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/comment",
- "style": {
- "app-plus": {
- "titleNView": false,
- "bounce": "none",
- "navigationStyle": "custom"
- }
- }
- },
- {
- "path" : "pages/dream/view",
- "style": {
- "app-plus": {
- "titleNView": false,
- "bounce": "none",
- "navigationStyle": "custom"
- },
- "onReachBottomDistance":126 //距离底部多远时触发 单位px
- }
- },
- {
- "path" : "pages/dream/videoPlay",
- "style": {
- "app-plus": {
- "titleNView": false,
- "bounce": "none",
- "navigationStyle": "custom"
- }
- }
- },
- {
- "path" : "lib/dever/pages/web_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",
- "^y-(.*)": "@/lib/community/y-$1/y-$1.vue"
- }
- }
- }
|