12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- export default {
- pages: [
- 'pages/examine/index',
- 'pages/applyDepart/index',
- 'pages/punchClock/index',
- 'pages/login/index',
-
-
- ],
- tabBar: {
- list: [
- {
- iconPath: './image/examineUnSelect.png',
- selectedIconPath: './image/examineSelect.png',
- pagePath: 'pages/examine/index',
- text: '审核'
- },{
- 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: '申请外出'
- }],
- '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: "你的位置信息将用于小程序定位"
- }
- }
- }
|