| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- export default defineAppConfig({
- pages: [
- 'pages/index/index',
- 'pages/Second',
- 'pages/Login',
- 'pages/Auth',
- 'pages/ChooseAuth',
- 'pages/ChooseScenario',
- 'pages/SetSchedule'
- ],
- subPackages:[
- {
- root:'moduleA',
- pages:[
- 'pages/third'
- ]
- }
- ],
- tabBar: {
- list:[
- {
- pagePath: 'pages/index/index',
- text: '首页',
- },
- {
- pagePath: 'pages/Second',
- text: '第二页',
- }
- ]
- },
- window: {
- "backgroundTextStyle": "light",
- "navigationBarBackgroundColor": "#000000",
- "navigationBarTitleText": "Weixin",
- "navigationBarTextStyle": "white",
- "backgroundColor": "#000000"
- },
- darkmode:true
- })
|