1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "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/tabbar/application/application",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "pages/tabbar/message/message",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "pages/tabbar/mine/mine",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- "subPackages": [{
- "root": "pages/subpack",
- "pages": [{
- "path": "pages/login/login",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black"
- }
- },
- {
- "path": "pages/bindInfo/bindInfo",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black"
- }
- }
- ]
- }],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#888888",
- "selectedColor": "#1677FF",
- "borderStyle": "white",
- "backgroundColor": "#FFFFFF",
- "list": [{
- "iconPath": "static/tabbar/index.png",
- "selectedIconPath": "static/tabbar/index-selected.png",
- "pagePath": "pages/tabbar/application/application",
- "text": "申请"
- }, {
- "iconPath": "static/tabbar/message.png",
- "selectedIconPath": "static/tabbar/message-selected.png",
- "pagePath": "pages/tabbar/message/message",
- "text": "消息"
- }, {
- "iconPath": "static/tabbar/mine-new.png",
- "selectedIconPath": "static/tabbar/mine-selected.png",
- "pagePath": "pages/tabbar/mine/mine",
- "text": "我的"
- }]
- },
- "uniIdRouter": {}
- }
|