constant.ts 483 B

123456789101112131415
  1. import { AppConstant } from "..";
  2. import banner from "@/assets/image/jmfirebg@2x.png";
  3. import ico from "@/assets/image/jmlogo.png";
  4. import { xmfireDeptId } from "@/constant/appDeptId";
  5. export const appConstant: AppConstant = {
  6. title: "火灾调查三维远程勘验平台",
  7. desc: "Three-dimensional remote prospecting platform for fire scenes",
  8. ico,
  9. name: "fire",
  10. banner,
  11. loginComponent: () => import("./view/login/index.vue"),
  12. deptId: xmfireDeptId,
  13. isSample: 0,
  14. };