app.config.ts 714 B

12345678910111213141516171819202122232425262728293031323334
  1. export default defineAppConfig({
  2. pages: ["pages/home/index", "pages/temp/index"],
  3. subpackages: [
  4. {
  5. root: "subModule",
  6. pages: [
  7. "pages/shopmall/index",
  8. "pages/feedback/index",
  9. "pages/order/index",
  10. "pages/iframe/index",
  11. "pages/portrait-iframe/index",
  12. ],
  13. },
  14. ],
  15. window: {
  16. backgroundTextStyle: "light",
  17. navigationBarBackgroundColor: "#fff",
  18. navigationBarTitleText: "锡善云城",
  19. navigationBarTextStyle: "black",
  20. },
  21. tabBar: {
  22. list: [
  23. {
  24. pagePath: "pages/home/index",
  25. text: "首页",
  26. },
  27. {
  28. pagePath: "pages/temp/index",
  29. text: "",
  30. },
  31. ],
  32. custom: true,
  33. },
  34. });