| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- export default {
- pages: [
- 'pages/mybusiness/index', // 我的公出
- 'pages/login/index',// 登录
- 'pages/applyReimbursement/index',// 申请报销
- 'pages/accountFrom/index', // 添加报销数据
- 'pages/drafts/index', // 报销提交
- 'pages/dataindex/index', // 数据索引
- 'pages/draftsdetail/index', // 报销详情
- 'pages/recordlist/index', // 报销记录
- 'pages/myinfo/index', // 我的账户
- ],
- tabBar: {
- list: [
- {
- iconPath: './image/my.png',
- selectedIconPath: './image/myselect.png',
- pagePath: 'pages/mybusiness/index',
- text: '列表'
- },
- {
- iconPath: './image/egressUnSelect.png',
- selectedIconPath: './image/egressUnSelect.png',
- pagePath: 'pages/applyReimbursement/index',
- text: '申请报销'
- },
- {
- iconPath: './image/my.png',
- selectedIconPath: './image/myselect.png',
- pagePath: 'pages/recordlist/index',
- text: '报销记录'
- },
- {
- iconPath: './image/my.png',
- selectedIconPath: './image/myselect.png',
- pagePath: 'pages/myinfo/index',
- text: '我的'
- },
- ],
- 'color': '#515151',
- 'selectedColor': '#56abe4',
- 'backgroundColor': '#fff',
- 'borderStyle': 'white'
- },
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#fff',
- navigationBarTitleText: 'WeChat',
- navigationBarTextStyle: 'black',
- },
- "lazyCodeLoading": "requiredComponents"
- }
|