123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/register/register",
- "style": {
- "navigationBarTitleText": "注册"
- }
- },
- {
- "path": "pages/home/home",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/type/type",
- "style": {
- "navigationBarTitleText": "分类"
- }
- },
- {
- "path": "pages/shop/shop",
- "style": {
- "navigationBarTitleText": "购物车"
- }
- },
- {
- "path": "pages/my/my",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/detail/detail",
- "style": {
- "navigationBarTitleText": "详情"
- }
- },
- {
- "path": "pages/list/list",
- "style": {
- "navigationBarTitleText": "地址列表"
- }
- },
- {
- "path": "pages/address/address",
- "style": {
- "navigationBarTitleText": "地址栏"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "商城",
- "navigationBarBackgroundColor": "#ff0000",
- "backgroundColor": "#F8F8F8",
- "usingComponents": {
- "van-button": "/wxcomponents/vant/button/index",
- "van-field": "/wxcomponents/vant/field/index",
- "van-search": "/wxcomponents/vant/search/index",
- "van-grid": "/wxcomponents/vant/grid/index",
- "van-grid-item": "/wxcomponents/vant/grid-item/index",
- "van-icon": "/wxcomponents/vant/icon/index",
- "van-notice-bar": "/wxcomponents/vant/notice-bar/index",
- "van-tree-select": "/wxcomponents/vant/tree-select/index",
- "van-card": "/wxcomponents/vant/card/index",
- "van-divider": "/wxcomponents/vant/divider/index",
- "van-cell": "/wxcomponents/vant/cell/index",
- "van-cell-group": "/wxcomponents/vant/cell-group/index",
- "van-tag": "/wxcomponents/vant/tag/index",
- "van-goods-action": "/wxcomponents/vant/goods-action/index",
- "van-goods-action-icon": "/wxcomponents/vant/goods-action-icon/index",
- "van-goods-action-button": "/wxcomponents/vant/goods-action-button/index",
- "van-action-sheet": "/wxcomponents/vant/action-sheet/index",
- "van-stepper": "/wxcomponents/vant/stepper/index",
- "van-checkbox": "/wxcomponents/vant/checkbox/index",
- "van-checkbox-group": "/wxcomponents/vant/checkbox-group/index",
- "van-row": "/wxcomponents/vant/row/index",
- "van-col": "/wxcomponents/vant/col/index",
- "van-submit-bar": "/wxcomponents/vant/submit-bar/index",
- "van-cascader": "/wxcomponents/vant/cascader/index",
- "van-switch": "/wxcomponents/vant/switch/index"
- }
- },
- "tabBar": {
- "color": "#000000",
- "selectedColor": "#ff0000",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/home/home",
- "iconPath": "static/home.png",
- "selectedIconPath": "static/home_active.png",
- "text": "首页"
- }, {
- "pagePath": "pages/type/type",
- "iconPath": "static/type.png",
- "selectedIconPath": "static/type_active.png",
- "text": "分类"
- }, {
- "pagePath": "pages/shop/shop",
- "iconPath": "static/shop.png",
- "selectedIconPath": "static/shop_active.png",
- "text": "购物车"
- }, {
- "pagePath": "pages/my/my",
- "iconPath": "static/my.png",
- "selectedIconPath": "static/my_active.png",
- "text": "我的"
- }]
- },
- "uniIdRouter": {}
- }
|