12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- export default defineAppConfig({
- pages: [
- 'pages/category',
- 'pages/share/share',
- 'pages/home/home'
- ],
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#000',
- navigationBarTitleText: 'WeChat',
- navigationBarTextStyle: 'white',
- backgroundColorTop: 'black',
- backgroundColorBottom:'#000',
- backgroundColor: '#000',
- backgroundImageColor:'#000'
- },
- "subpackages": [
- {
- "root": "subPackages/safe",
- "pages": [
- "complaining/index"
- ]
- },
- {
- "root": "subPackages/my",
- "pages": [
- "edit/edit",
- "edit/editUpload"
- ]
- }
- ],
- tabBar: {
- custom: true,
- color: '#ffffff',
- selectedColor: '#DC143C',
- backgroundColor: '#000000',
- list: [
- {
- pagePath: 'pages/category',
- text: '首页'
- },
- {
- pagePath: 'pages/home/home',
- text: '我的'
- }
- ]
- }
- })
|