policeSecurity/collect_information/src/app.config.ts

48 lines
1.2 KiB
TypeScript
Raw Normal View History

2024-09-10 11:00:20 +08:00
export default defineAppConfig({
pages: [
'pages/login/login',
'pages/register/register',
2024-09-11 09:22:00 +08:00
'pages/projectManager/index/index',
'pages/policeManager/index/index',
2024-09-10 11:00:20 +08:00
'pages/mine/mine',
'pages/employeeInfo/employeeInfo',
2024-09-11 14:27:30 +08:00
'pages/projectManager/myProject/myProject'
2024-09-10 11:00:20 +08:00
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#f7f8fa',
navigationBarTitleText: '',
navigationBarTextStyle: 'black',
},
tabBar: {
2024-09-11 10:25:03 +08:00
custom: true,
2024-09-10 11:00:20 +08:00
list: [
{
2024-09-11 09:22:00 +08:00
pagePath: 'pages/projectManager/index/index',
2024-09-10 11:00:20 +08:00
text: '首页',
iconPath: "assets/mine/punch.png",
selectedIconPath: "assets/mine/punch-active.png"
},
2024-09-11 11:35:24 +08:00
{
pagePath: 'pages/policeManager/index/index',
text: '首页',
iconPath: "assets/mine/punch.png",
selectedIconPath: "assets/mine/punch-active.png"
},
2024-09-10 11:00:20 +08:00
{
pagePath: 'pages/employeeInfo/employeeInfo',
text: '员工信息',
iconPath: "assets/mine/punch.png",
selectedIconPath: "assets/mine/punch-active.png"
},
{
pagePath: 'pages/mine/mine',
text: '我的',
iconPath: "assets/mine/my.png",
selectedIconPath: "assets/mine/my-active.png"
},
]
}
})