| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- export default {
- pages: [
- 'pages/project/index',//审核
- // 'pages/staffDistribution/index',//员工分布
- 'pages/punchClock/index',//打卡
-
- 'pages/egressDetails/index',//公出详情
- 'pages/login/index',//登录
- 'pages/applyDepart/index',//申请公出
- 'pages/mybusiness/index',//我的
- ],
- tabBar: {
- list: [
- {
- iconPath: './image/punchClockUnSelect.png',
- selectedIconPath: './image/punchClockSelect.png',
- pagePath: 'pages/punchClock/index',
- text: '打卡'
- },
- {
- iconPath: './image/egressUnSelect.png',
- selectedIconPath: './image/egressSelect.png',
- pagePath: 'pages/applyDepart/index',
- text: '申请公出'
- },
- {
- iconPath: './image/examineUnSelect.png',
- selectedIconPath: './image/examineSelect.png',
- pagePath: 'pages/project/index',
- text: '我的'
- },
- {
- iconPath: './image/my.png',
- selectedIconPath: './image/myselect.png',
- pagePath: 'pages/mybusiness/index',
- text: '我'
- }],
- 'color': '#515151',
- 'selectedColor': '#56abe4',
- 'backgroundColor': '#fff',
- 'borderStyle': 'white'
- },
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#fff',
- navigationBarTitleText: 'WeChat',
- navigationBarTextStyle: 'black',
- },
- requiredBackgroundModes: ['location'],
- requiredPrivateInfos: [
- "getLocation",
- "onLocationChange",
- "startLocationUpdate",
- ],
- plugins: {
- chooseLocation: {
- version: "1.0.10",
- provider: "wx76a9a06e5b4e693e"
- },
- },
- permission: {
- "scope.userLocation": {
- desc: "你的位置信息将用于小程序定位"
- }
- },
- "lazyCodeLoading": "requiredComponents"
- }
|