quisk.ts 612 B

1234567891011121314151617181920212223
  1. import EditFire from "./editFire.vue";
  2. import EditLeaveMsg from "./editLeaveMsg.vue";
  3. import LeaveMsgList from "./leaveMsgList.vue";
  4. import { quiskMountFactory } from "@/helper/mount";
  5. export const addFire = quiskMountFactory(EditFire, {
  6. title: "新增火调项目",
  7. });
  8. export const editFire = quiskMountFactory(EditFire, {
  9. title: "编辑火调项目",
  10. });
  11. export const addLeaveMsg = quiskMountFactory(EditLeaveMsg, {
  12. title: "新增留言",
  13. width: 540,
  14. });
  15. export const showLeaveMsgList = quiskMountFactory(LeaveMsgList, {
  16. title: "留言",
  17. enterText: "发表留言",
  18. power: "message:add",
  19. });