12345678910111213141516171819202122232425262728 |
- export const enum AppType {
- fire = "1",
- criminal = "2",
- }
- export type AppConfigType = {
- [key in AppType]: {
- useScssPath: string;
- title: string;
- desc: string;
- banner: string;
- };
- };
- export const AppConfig: AppConfigType = {
- [AppType.criminal]: {
- useScssPath: "@/config/criminal.scss",
- title: "刑侦三维远程勘验平台",
- desc: "dimensional remote prospecting platform of fire scene of Fire Rescue",
- banner: "./public/criminalBanner.png",
- },
- [AppType.fire]: {
- useScssPath: "@/config/fire.scss",
- title: "消防火调三维远程勘验平台",
- desc: "dimensional remote prospecting platform of fire scene of Fire Rescue",
- banner: "./public/fireBanner.png",
- },
- };
|