123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/goods/goodList/goodList",
- "style": {
- "navigationBarTitleText": "全部商品",
- "navigationStyle": "custom",
- "enablePullDownRefresh": true,
- "onReachBottomDistance": 150
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "公司信息",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/my/my",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle": "custom",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/my/myOrder/myOrder",
- "style": {
- "navigationBarTitleText": "我的订单",
- "enablePullDownRefresh": false,
- "onReachBottomDistance": 150
- }
- },
- {
- "path": "pages/my/myOrderDetail/myOrderDetail",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/goods/goodSearch/goodSearch",
- "style": {
- "navigationBarTitleText": "搜索",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#ffffff"
- }
- },
- {
- "path": "pages/goods/orderOK/orderOK",
- "style": {
- "navigationBarTitleText": "订单确认",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/goods/orderOK/index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/goods/goodDetail/goodDetail",
- "style": {
- "navigationBarTitleText": "商品详情",
- "enablePullDownRefresh": false
- }
- }
- ],
- "tabBar": {
- "list": [{
- "pagePath": "pages/goods/goodList/goodList",
- "text": "首页",
- "iconPath": "./static/home.png",
- "selectedIconPath": "./static/home_cur.png",
- "style": {
- "onReachBottomDistance": 150,
- "enablePullDownRefresh": true
- }
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的",
- "iconPath": "./static/my.png",
- "selectedIconPath": "./static/my_cur.png"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#F8F8F8"
- },
- "uniIdRouter": {}
- }
|