quisk.ts 662 B

1234567891011121314151617181920212223242526
  1. import AddCaseFile from "./addCaseFile.vue";
  2. import AddLibrary from "./addLibrary.vue";
  3. import AddScenes from "./addScenes.vue";
  4. import setType from "./setType.vue";
  5. import { quiskMountFactory } from "@/helper/mount";
  6. import { nextTick } from "vue";
  7. export const addCaseFile = quiskMountFactory(AddCaseFile, {
  8. title: "上传附件",
  9. width: 570,
  10. });
  11. export const addCaseScenes = quiskMountFactory(AddScenes, {
  12. title: "媒体库",
  13. width: 1000,
  14. });
  15. export const addLibraryFile = quiskMountFactory(AddLibrary, {
  16. title: "上传文件",
  17. width: 550,
  18. });
  19. export const setTypeFile = quiskMountFactory(setType, {
  20. title: "修改分类",
  21. width: 550,
  22. });