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