app.ts 729 B

12345678910111213141516171819202122232425262728
  1. export const enum AppType {
  2. fire = "1",
  3. criminal = "2",
  4. }
  5. export type AppConfigType = {
  6. [key in AppType]: {
  7. useScssPath: string;
  8. title: string;
  9. desc: string;
  10. banner: string;
  11. };
  12. };
  13. export const AppConfig: AppConfigType = {
  14. [AppType.criminal]: {
  15. useScssPath: "@/config/criminal.scss",
  16. title: "刑侦三维远程勘验平台",
  17. desc: "dimensional remote prospecting platform of fire scene of Fire Rescue",
  18. banner: "./public/criminalBanner.png",
  19. },
  20. [AppType.fire]: {
  21. useScssPath: "@/config/fire.scss",
  22. title: "消防火调三维远程勘验平台",
  23. desc: "dimensional remote prospecting platform of fire scene of Fire Rescue",
  24. banner: "./public/fireBanner.png",
  25. },
  26. };