app.config.ts 686 B

123456789101112131415161718192021222324252627282930313233
  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/index/index',
  4. 'pages/explore/index',
  5. 'pages/profile/index',
  6. 'pages/login/index',
  7. 'pages/register/index'
  8. ],
  9. window: {
  10. backgroundTextStyle: 'light',
  11. navigationBarBackgroundColor: '#1890ff',
  12. navigationBarTitleText: '小程序Starter',
  13. navigationBarTextStyle: 'white',
  14. navigationStyle: 'custom'
  15. },
  16. tabBar: {
  17. custom: true,
  18. list: [
  19. {
  20. pagePath: 'pages/index/index',
  21. text: '首页'
  22. },
  23. {
  24. pagePath: 'pages/explore/index',
  25. text: '发现'
  26. },
  27. {
  28. pagePath: 'pages/profile/index',
  29. text: '我的'
  30. }
  31. ]
  32. }
  33. })