123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/mine/mine",
- "style": {
- // "navigationBarTitleText" : "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/register",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/forgetPassword",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/login/changePasswoed",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/mine/myorder",
- "style": {
- "navigationBarTitleText": "我的订单",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/mine/card",
- "style": {
- "navigationBarTitleText": "我的体验卡",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/mine/setting",
- "style": {
- "navigationBarTitleText": "设置",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/mine/problem",
- "style" :
- {
- "navigationBarTitleText" : "常见问题",
- "enablePullDownRefresh" : false
- }
- },
- {
- "path" : "pages/mine/abount",
- "style" :
- {
- "navigationBarTitleText" : "关于我们",
- "enablePullDownRefresh" : false
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "selectedColor": "#57C2F4",
- "color": "#7A7A7A ",
- "list": [{
- "iconPath": "/static/images/index.png",
- "selectedIconPath": "/static/images/index1.png",
- "text": "首页",
- "pagePath": "pages/index/index"
- }, {
- "iconPath": "/static/images/mine.png",
- "selectedIconPath": "/static/images/mine1.png",
- "text": "我的",
- "pagePath": "pages/mine/mine"
- }]
- },
- "uniIdRouter": {}
- }
|