123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- {
- "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": "首页",
- "enablePullDownRefresh": true
- }
- }, {
- "path": "pages/my/my",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/shop/shop",
- "style": {
- "navigationBarTitleText": "购物车"
- }
- },
- {
- "path": "pages/type/type",
- "style": {
- "navigationBarTitleText": "分类"
- }
- },
- {
- "path": "pages/detail/detail",
- "style": {
- "navigationBarTitleText": "详情"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#FF0000",
- "backgroundColor": "#F8F8F8",
- "usingComponents": {
- "van-button": "/wxcomponents/dist/button/index",
- "van-field": "/wxcomponents/dist/field/index",
- "van-toast": "/wxcomponents/dist/toast/index",
- "van-search": "/wxcomponents/dist/search/index",
- "van-grid": "/wxcomponents/dist/grid/index",
- "van-grid-item": "/wxcomponents/dist/grid-item/index",
- "van-notice-bar": "/wxcomponents/dist/notice-bar/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": {},
- "condition": { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }]
- }
- }
|