| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- export default defineAppConfig({
- pages: [
- 'pages/yongren/dashboard/index',
- 'pages/yongren/talent/list/index',
- 'pages/yongren/talent/detail/index',
- 'pages/yongren/order/list/index',
- 'pages/yongren/order/detail/index',
- 'pages/yongren/statistics/index',
- 'pages/yongren/settings/index',
- // 原有小程序页面(企业用户专用)
- 'pages/profile/index',
- 'pages/login/index'
- ],
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#3b82f6',
- navigationBarTitleText: '用人方小程序',
- navigationBarTextStyle: 'white',
- navigationStyle: 'custom'
- },
- tabBar: {
- custom: true,
- color: "#6b7280",
- selectedColor: "#3b82f6",
- backgroundColor: "#ffffff",
- list: [
- {
- pagePath: 'pages/yongren/dashboard/index',
- text: '首页'
- },
- {
- pagePath: 'pages/yongren/talent/list/index',
- text: '人才'
- },
- {
- pagePath: 'pages/yongren/order/list/index',
- text: '订单'
- },
- {
- pagePath: 'pages/yongren/statistics/index',
- text: '数据'
- },
- {
- pagePath: 'pages/profile/index',
- text: '设置'
- }
- ]
- },
- usingComponents: {}
- })
|