| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- export default defineAppConfig({
- pages: [
- 'pages/yongren/login/index',
- '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/index/index',
- 'pages/explore/index',
- 'pages/profile/index',
- 'pages/login/index',
- 'pages/login/wechat-login',
- 'pages/register/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/yongren/settings/index',
- text: '设置'
- }
- ]
- },
- usingComponents: {}
- })
|