From 2aab63a589f288c0f1ed7703da3f2ee1a4190836 Mon Sep 17 00:00:00 2001 From: gssong <1742057357@qq.com> Date: Mon, 12 Jun 2023 21:23:14 +0800 Subject: [PATCH] =?UTF-8?q?remove=20=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/workflow/model/index.vue | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/views/workflow/model/index.vue b/src/views/workflow/model/index.vue index 23a5f02..6a8f677 100644 --- a/src/views/workflow/model/index.vue +++ b/src/views/workflow/model/index.vue @@ -107,8 +107,6 @@ const formRef = ref(ElForm); const buttonLoading = ref(false); // 遮罩层 const loading = ref(true) -// 导出遮罩层 -const exportLoading = ref(false) // 选中数组 const ids = ref>([]) // 非单个禁用 @@ -205,21 +203,6 @@ const clickDesign = (id: string) => { designModel.value.visible = true; } }; -// 关闭设计流程 -const closeBpmn = () => { - getList(); - if (designModel.value) { - designModel.value.visible = false; - } -}; -const handleClose = async () => { - await proxy?.$modal.confirm('请记得点击保存按钮,确定关闭设计窗口?'); - if (designModel.value) { - designModel.value.visible = false; - } - // 刷新数据 - getList(); -}; // 导出流程模型 const clickExportZip = (data: any) => { proxy?.$download.zip('/workflow/model/export/zip/' + data.id, data.name + '-' + data.key);