123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/home/home"
- },
- {
- "path": "pages/business/business"
- },
- {
- "path": "pages/my/my"
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "app-plus": {
- "background": "#efeff4"
- }
- },
- "tabBar": {
- "list": [
- {
- "pagePath": "pages/home/home",
- "text": "首页",
- "iconPath": "static/hotel.png",
- "selectedIconPath": "static/hotelSelected.png"
- },
- {
- "pagePath": "pages/business/business",
- "text": "业务办理",
- "iconPath": "static/business.png",
- "selectedIconPath": "static/businessSelected.png"
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的",
- "iconPath": "static/my.png",
- "selectedIconPath": "static/mySelected.png"
- }
- ]
- },
- "subPackages":[
- {
- "root": "subpkg",
- "pages": [
- {
- "path" : "testSubpkg/testSubpkg"
- }
- ]
- }
- ]
- }
|