123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path" : "pages/index/index", // 首页
- "style" :
- {
- "navigationBarTitleText": "垃圾投放",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path": "pages/hexiao/index",
- "style": {
- "navigationBarTitleText": "交易记录",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/userCenter/index",
- "style": {
- "navigationBarTitleText": "个人中心",
- "navigationBarBackgroundColor": "#2ab4e5",
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "pages/userCenter/aboutUs",
- "style": {
- "navigationBarTitleText": "关于我们"
- }
- },
- {
- "path": "pages/agreement/agreement",
- "style": {
- "navigationBarTitleText": "注意事项及服务协议"
- }
- },
- {
- "path": "pages/userCenter/leDouQuery",
- "style": {
- "navigationBarTitleText": "乐豆查询"
- }
- },
- {
- "path": "pages/userCenter/changePwd", // 我的>修改密码
- "style": {
- "navigationBarTitleText": "修改密码"
- }
- }
- ,{
- "path" : "pages/ledouHexiao/ledouHexiao",
- "style" :
- {
- "navigationBarTitleText": "乐豆核销",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/ledouHexiao/hexiaoSuccess",
- "style" :
- {
- "navigationBarTitleText": "核销成功",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/userAuth/userAuth",
- "style" :
- {
- "navigationBarTitleText": "投放称重",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/tdRecord/tdRecord",
- "style" :
- {
- "navigationBarTitleText": "投递记录",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/help/help",
- "style" :
- {
- "navigationBarTitleText": "蓝牙使用帮助",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#f2f2f2",
- "app-plus": {
- // 将回弹属性关掉
- "bounce": "none",
- "scrollIndicator": "none"
- }
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#2ab4e5",
- "backgroundColor": "#ffffff",
- "fontSize": "14px",
- "list": [
- {
- "pagePath": "pages/index/index",
- "iconPath": "static/tabbar/dzicheng.png",
- "selectedIconPath": "static/tabbar/dzicheng-active.png",
- "text": "垃圾投放"
- },
- {
- "pagePath": "pages/hexiao/index",
- "iconPath": "static/tabbar/record.png",
- "selectedIconPath": "static/tabbar/record-active.png",
- "text": "交易记录"
- },
- {
- "pagePath": "pages/userCenter/index",
- "iconPath": "static/tabbar/user.png",
- "selectedIconPath": "static/tabbar/user-active.png",
- "text": "我的"
- }]
- }
- }
|