123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- export default {
- pages: [
- 'pages/punchClock/index', // 打卡
- 'pages/project/index', // 研发项目
- 'pages/login/index', // 登录
- 'pages/mybusiness/index', // 审核
- 'pages/detail/index',
- // 'pages/projectAdd/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/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"
- }
|