123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- {
- "easycom": {
- "autoscan": true,
- // 注意一定要放在custom里,否则无效,https://ask.dcloud.net.cn/question/131175
- "custom": {
- "^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
- "^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue",
- "^u-([^-].*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue"
- }
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/jiaZhai",
- "style": {
- "navigationBarTitleText": "天合健康",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationStyle": "custom",
- "onReachBottomDistance": 50 // (滚动页面到距离底部50px时,就会触发onReachBottom事件)
- }
- },
- {
- "path": "pages/my/my",
- "style": {
- "navigationBarTitleText": "天合健康",
- "navigationStyle": "custom",
- "onReachBottomDistance": 50 // (滚动页面到距离底部50px时,就会触发onReachBottom事件)
- }
- },
- {
- "path": "pages/guiYuan/guiYuan",
- "style": {
- "navigationBarTitleText": "天合健康",
- "navigationStyle": "custom",
- "onReachBottomDistance": 50 // (滚动页面到距离底部50px时,就会触发onReachBottom事件)
- }
- },
- {
- "path" : "pages/LDY/LDY",
- "style" :
- {
- "navigationBarTitleText" : "喜宴",
- "navigationStyle": "custom"
- }
- },
- {
- "path" : "pages/LDY/LDYtianXie",
- "style" :
- {
- "navigationBarTitleText" : "喜宴",
- "navigationStyle": "custom"
- }
- }
- ],
- // 分包
- "subPackages": [{
- "root": "pagesGL",
- "pages": [{
- "path": "index/index",
- "style": {
- "navigationBarTitleText": "管理系统首页",
- "navigationStyle": "custom",
- "onReachBottomDistance": 50 // (滚动页面到距离底部50px时,就会触发onReachBottom事件)
- }
- }]
- }],
- "tabBar": {
- "color": "#AAAAAA",
- "selectedColor": "#FF0000",
- "borderStyle": "black",
- // "backgroundColor": "#F8F8F8",
- "list": [{
- "pagePath": "pages/index/index",
- "selectedIconPath": "static/table/icon_shouye1.png",
- "iconPath": "static/table/icon_shouye.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/guiYuan/guiYuan",
- "selectedIconPath": "static/table/huaShen1.png",
- "iconPath": "static/table/huaShen.png",
- "text": "贵缘"
- },
- {
- "pagePath": "pages/my/my",
- "selectedIconPath": "static/table/icon_wode1.png",
- "iconPath": "static/table/icon_wode.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|