123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
-
- "usingComponents":{
- "van-search": "/wxcomponents/dist/search/index"
- },
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/index/hotel",
- "style": {
-
- "usingComponents":{
- "van-sticky": "/wxcomponents/dist/sticky/index",
- "van-nav-bar": "/wxcomponents/dist/nav-bar/index",
- "van-search": "/wxcomponents/dist/search/index",
- "van-tab": "/wxcomponents/dist/tab/index",
- "van-tabs": "/wxcomponents/dist/tabs/index",
- "van-dropdown-menu": "/wxcomponents/dist/dropdown-menu/index",
- "van-dropdown-item": "/wxcomponents/dist/dropdown-item/index",
- "van-row": "/wxcomponents/dist/row/index",
- "van-col": "/wxcomponents/dist/col/index",
- "van-icon": "/wxcomponents/dist/icon/index"
-
- }
- }
- },
-
- {
- "path": "pages/myone/oneIndex",
- "style": {
- "usingComponents":{
- "van-tab": "/wxcomponents/dist/tab/index",
- "van-tabs": "/wxcomponents/dist/tabs/index"
- },
-
- "navigationBarTitleText": "发现"
- }
- },
-
- {
- "path": "pages/taBar/index",
- "style": {
- "navigationBarTitleText": "订单"
- }
- },
- {
- "path": "pages/myCenter/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
-
- ],
- "tabBar": {
- "color": "#C0C4CC",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页"
-
- },
- {
- "pagePath": "pages/myone/oneIndex",
- "text": "发现"
- },
-
- {
- "pagePath": "pages/taBar/index",
- "text": "订单"
- },
- {
- "pagePath": "pages/myCenter/index",
- "text": "我的"
- }
- ]
- },
-
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
-
- }
- }
|