39 lines
947 B
TypeScript
39 lines
947 B
TypeScript
|
export default defineAppConfig({
|
||
|
pages: [
|
||
|
'pages/login/login',
|
||
|
'pages/register/register',
|
||
|
'pages/index/index',
|
||
|
'pages/mine/mine',
|
||
|
'pages/employeeInfo/employeeInfo',
|
||
|
],
|
||
|
window: {
|
||
|
backgroundTextStyle: 'light',
|
||
|
navigationBarBackgroundColor: '#f7f8fa',
|
||
|
navigationBarTitleText: '',
|
||
|
navigationBarTextStyle: 'black',
|
||
|
},
|
||
|
tabBar: {
|
||
|
list: [
|
||
|
{
|
||
|
pagePath: 'pages/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"
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
|
||
|
})
|