123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/home/home",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
-
- },
- {
- "path" : "pages/login/login",
- "style" :
- {
- "navigationBarTitleText": "",
- "navigationStyle": "custom"
- }
- },
- {
- "path" : "pages/login/register",
- "style" :
- {
- "navigationBarTitleText": "注册"
- }
- },
- {
- "path" : "pages/login/forget",
- "style" :
- {
- "navigationBarTitleText": ""
- }
- },
- {
- "path" : "pages/login/mobileLogin",
- "style" :
- {
- "navigationBarTitleText": "手机号快捷登录"
- }
- },
- {
- "path" : "pages/mine/mine",
- "style" :
- {
- "navigationBarTitleText": ""
- }
- },
- {
- "path" : "pages/mang/mang",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
-
- },
- {
- "path" : "pages/address/address",
- "style" :
- {
- "navigationBarTitleText": "地址管理",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "pages/address/addressManage",
- "style" :
- {
- "navigationBarTitleText": "地址管理",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/mang/detail",
- "style" :
- {
- "navigationBarTitleText": "盲盒详情",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "tabBar": {
- "color": "#999999",
- "selectedColor": "#92B99C",
- "backgroundColor":"#ffffff",
- "list": [
- {
- "pagePath": "pages/home/home",
- "iconPath": "static/tab/home.png",
- "selectedIconPath": "static/tab/home-full.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/mang/mang",
- "iconPath": "static/tab/mang.png",
- "selectedIconPath": "static/tab/mang-full.png",
- "text": "盲盒"
- },
- // {
- // "pagePath": "pages/order/order",
- // "iconPath": "static/tab/order.png",
- // "selectedIconPath": "static/tab/order-full.png",
- // "text": "订单"
- // },
- {
- "pagePath": "pages/mine/mine",
- "iconPath": "static/tab/mine.png",
- "selectedIconPath": "static/tab/mine-full.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "盲go",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#FFFFFF"
- },
- "uniIdRouter": {}
- }
|