From 671e61585f86de7359faeaf1e089124b1adbb691 Mon Sep 17 00:00:00 2001 From: konbai <1527468660@qq.com> Date: Sun, 20 Mar 2022 11:55:49 +0800 Subject: [PATCH] =?UTF-8?q?fix=20--=20=E4=BF=AE=E5=A4=8D=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E5=AE=9A=E4=B9=89=E6=9F=A5=E7=9C=8B=E6=B5=81=E7=A8=8B=E5=9B=BE?= =?UTF-8?q?=E6=9C=AA=E5=88=B7=E6=96=B0=E6=B8=B2=E6=9F=93=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/views/workflow/definition/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ruoyi-ui/src/views/workflow/definition/index.vue b/ruoyi-ui/src/views/workflow/definition/index.vue index 6f441ef8..12d26a7d 100644 --- a/ruoyi-ui/src/views/workflow/definition/index.vue +++ b/ruoyi-ui/src/views/workflow/definition/index.vue @@ -187,7 +187,7 @@ - + @@ -375,6 +375,7 @@ export default { processView: { title: '', open: false, + index: undefined, xmlData:"", }, // bpmn.xml 导入 @@ -515,6 +516,7 @@ export default { handleProcessView(row) { let definitionId = row.definitionId; this.processView.title = "流程图"; + this.processView.index = definitionId; // 发送请求,获取xml readXml(definitionId).then(res => { this.processView.xmlData = res.data;