| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- export default defineAppConfig({
- pages: [
- 'pages/login/index',
- 'pages/index/index',
- 'pages/attendance/index',
- 'pages/personal-info/index',
- 'pages/employment/index',
- 'pages/settings/index',
- 'pages/account-security/index',
- ],
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#3b82f6',
- navigationBarTitleText: '人才小程序',
- navigationBarTextStyle: 'white',
- navigationStyle: 'custom'
- },
- tabBar: {
- custom: true,
- color: "#6b7280",
- selectedColor: "#3b82f6",
- backgroundColor: "#ffffff",
- list: [
- {
- pagePath: 'pages/index/index',
- text: '首页'
- },
- {
- pagePath: 'pages/attendance/index',
- text: '考勤'
- },
- {
- pagePath: 'pages/personal-info/index',
- text: '我的'
- },
- {
- pagePath: 'pages/settings/index',
- text: '更多'
- }
- ]
- },
- usingComponents: {}
- })
|