医学道
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
video/src/app.config.ts

69 lines
1.5 KiB

1 year ago
export default defineAppConfig({
pages: [
'pages/index/index',
1 year ago
'pages/login/login',
'pages/check/check',
1 year ago
'pages/my/my'
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#fff',
navigationBarTitleText: '课程',
navigationBarTextStyle: 'black'
},
tabBar: {
color: '#909795',
selectedColor: '#45D4A8',
1 year ago
list: [
1 year ago
{
text: '课题',
pagePath: 'pages/index/index',
iconPath: "static/tabs/home-unselect.png",
selectedIconPath: "static/tabs/home-selected.png",
},
{
text: "我的",
pagePath: 'pages/my/my',
iconPath: "static/tabs/mine-unselect.png",
selectedIconPath: "static/tabs/mine-selected.png",
}
1 year ago
]
},
preloadRule: {
'pages/index/index': {
network: 'all',
packages: ['pages/business']
},
'pages/my/my': {
network: 'all',
packages: ['pages/manage']
}
},
subpackages: [
{
root: 'pages/business',
pages: [
'userInfo/userInfo',
'videoInfo/videoInfo',
'test/test',
'history/history',
'curHistory/curHistory',
1 year ago
]
},
{
root: 'pages/manage',
pages: [
'depAdmin/depAdmin',
'student/student',
1 year ago
'curriculum/curriculum',
'addStudent/addStudent',
'depCur/depCur',
'addCur/addCur',
'spotMeeting/spotMeeting',
1 year ago
'bingUser/bingUser',
1 year ago
]
}
],
lazyCodeLoading: "requiredComponents"
1 year ago
})