59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
export default defineAppConfig({
|
|
pages: [
|
|
'pages/login/login',
|
|
'pages/register/register',
|
|
'pages/projectManager/index/index',
|
|
'pages/policeManager/index/index',
|
|
'pages/mine/mine',
|
|
'pages/employeeInfo/employeeInfo',
|
|
],
|
|
window: {
|
|
backgroundTextStyle: 'light',
|
|
navigationBarBackgroundColor: '#4e87ff',
|
|
navigationBarTitleText: '',
|
|
navigationBarTextStyle:'white',
|
|
},
|
|
subpackages: [
|
|
{
|
|
root: "subPages",
|
|
pages: [
|
|
'pages/policeManager/index',
|
|
'pages/policeDetails/index',
|
|
'pages/myProject/myProject',
|
|
'pages/projectDetails/projectDetails',
|
|
'pages/form/form'
|
|
]
|
|
}
|
|
],
|
|
tabBar: {
|
|
custom: true,
|
|
list: [
|
|
{
|
|
pagePath: 'pages/projectManager/index/index',
|
|
text: '首页',
|
|
iconPath: "assets/mine/punch.png",
|
|
selectedIconPath: "assets/mine/punch-active.png"
|
|
},
|
|
{
|
|
pagePath: 'pages/policeManager/index/index',
|
|
text: '首页',
|
|
iconPath: "assets/mine/punch.png",
|
|
selectedIconPath: "assets/mine/punch-active.png"
|
|
},
|
|
{
|
|
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"
|
|
},
|
|
]
|
|
}
|
|
|
|
})
|