You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.7 KiB
62 lines
1.7 KiB
export default {
|
|
pages: [
|
|
'pages/home/index',
|
|
'pages/user/index',
|
|
'pages/auth/login/login'
|
|
],
|
|
subPackages: [{
|
|
'root': 'packages/',
|
|
'pages': [
|
|
'patrol/index',
|
|
'patrolView/index',
|
|
'changePassword/index',
|
|
'changePassword/success/index',
|
|
'video/index',
|
|
]
|
|
}],
|
|
permission: {
|
|
"scope.userLocation": {
|
|
"desc": '需要获取您的地理位置'
|
|
}
|
|
},
|
|
requiredPrivateInfos: [
|
|
'getLocation',
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: "#2C66F3",
|
|
navigationBarTitleText: '智慧交通',
|
|
backgroundColor: "#f2f2f2",
|
|
},
|
|
tabBar: {
|
|
color: '#B2B2B2',
|
|
selectedColor: '#0080EE',
|
|
list: [
|
|
{
|
|
'pagePath': 'pages/home/index',
|
|
'iconPath': 'static/img/tabbar/shouye.png',
|
|
'selectedIconPath': 'static/img/tabbar/shouye-active.png',
|
|
'text': '巡查'
|
|
},
|
|
{
|
|
'pagePath': 'pages/user/index',
|
|
'iconPath': 'static/img/tabbar/wode.png',
|
|
'selectedIconPath': 'static/img/tabbar/wode-active.png',
|
|
'text': '我的'
|
|
},
|
|
]
|
|
},
|
|
usingComponents: {
|
|
'chart-wx': 'components/wx-chart/chart',
|
|
"van-icon": "components/vant-weapp/icon/index",
|
|
"van-dropdown-menu": "components/vant-weapp/dropdown-menu/index",
|
|
"van-dropdown-item": "components/vant-weapp/dropdown-item/index",
|
|
"van-tag": "components/vant-weapp/tag/index",
|
|
"van-button": "components/vant-weapp/button/index",
|
|
"van-row": "components/vant-weapp/row/index",
|
|
"van-col": "components/vant-weapp/col/index",
|
|
"van-transition": "components/vant-weapp/transition/index",
|
|
"ec-canvas": "components/ec-canvas/ec-canvas"
|
|
|
|
}
|
|
}
|
|
|