123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {
- "easycom": {
- "^u-(.*)": "@/plugins/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/user/index",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationStyle": "custom"
- }
- }
- ],
- "subPackages": [
- {
- "root": "pages/login",
- "pages": [
- {
- "path": "index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- }
- ]
- },{
- "root": "pages/index",
- "pages": [
- {
- "path": "detail",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle": "custom"
- }
- }
- ]
- },{
- "root": "pages/order",
- "pages": [
- {
- "path": "index",
- "style": {
- "navigationBarTitleText": "我的订单",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "order_confirm",
- "style": {
- "navigationBarTitleText": "确认购买",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "success",
- "style": {
- "navigationBarTitleText": "购买成功",
- "navigationStyle": "custom"
- }
- }
- ]
- }
- ],
- "tabBar": {
- "color": "#9EA3B1",
- "selectedColor": "#0D121A",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list":[
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/image/ic_home_unselected.png",
- "selectedIconPath": "static/image/ic_home_selected.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/image/ic_me_unselected.png",
- "selectedIconPath": "static/image/ic_me_selected.png",
- "text": "我的"
- }
- ]
-
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|