app.config.ts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/home/index',
  4. 'pages/explore/index',
  5. 'pages/profile/index',
  6. 'pages/login/index',
  7. 'pages/login/wechat-login',
  8. 'pages/register/index',
  9. 'pages/select-activity/ActivitySelectPage',
  10. 'pages/schedule-list/ScheduleListPage',
  11. 'pages/passengers/passengers',
  12. 'pages/passengers/add-passenger',
  13. 'pages/order/index',
  14. 'pages/pay-success/index'
  15. ],
  16. window: {
  17. backgroundTextStyle: 'light',
  18. navigationBarBackgroundColor: '#1890ff',
  19. navigationBarTitleText: '小程序Starter',
  20. navigationBarTextStyle: 'white',
  21. navigationStyle: 'custom'
  22. },
  23. tabBar: {
  24. custom: true,
  25. color: "#000000",
  26. selectedColor: "#000000",
  27. backgroundColor: "#000000",
  28. list: [
  29. {
  30. pagePath: 'pages/home/index',
  31. text: '首页'
  32. },
  33. {
  34. pagePath: 'pages/explore/index',
  35. text: '发现'
  36. },
  37. {
  38. pagePath: 'pages/profile/index',
  39. text: '我的'
  40. }
  41. ]
  42. },
  43. usingComponents: {}
  44. })