From 78d2b4443f4c97a72a5b038585cb24b5a95b8c0e Mon Sep 17 00:00:00 2001 From: linbangquan <1437892690@qq.com> Date: Wed, 20 Dec 2023 12:01:17 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E7=BC=96=E8=BE=91-=E7=BC=96=E8=BE=91=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E7=9A=84=E6=B5=81=E7=A8=8B=EF=BC=8C=E4=BF=9D=E5=AD=98=E5=BC=82?= =?UTF-8?q?=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1049987008397312]流程编辑-编辑导入的流程,保存异常 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1049987008397312/1049271686627328 --- src/views/pages/process/flow/flow-edit.vue | 1 + src/views/pages/process/flow/flow-overview.vue | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/src/views/pages/process/flow/flow-edit.vue b/src/views/pages/process/flow/flow-edit.vue index d025a1d5..6a5dcde4 100644 --- a/src/views/pages/process/flow/flow-edit.vue +++ b/src/views/pages/process/flow/flow-edit.vue @@ -593,6 +593,7 @@ export default { let data = res.Return.config && (typeof res.Return.config == 'string') ? JSON.parse(res.Return.config) : res.Return.config; this.referenceCount = res.Return.referenceCount; Object.assign(this.processConfig, data.process.processConfig); + this.processConfig.uuid = res.Return.uuid; this.processConfig.name = res.Return.name; this.initTopo(data, action); } else { diff --git a/src/views/pages/process/flow/flow-overview.vue b/src/views/pages/process/flow/flow-overview.vue index 5957d72a..0f09c9cc 100644 --- a/src/views/pages/process/flow/flow-overview.vue +++ b/src/views/pages/process/flow/flow-overview.vue @@ -13,6 +13,7 @@ ref="uploadDialog" targetType="process" url="/api/binary/common/import" + @close="closeComplexUploadDialog" > @@ -403,6 +404,11 @@ export default { this.keyword = historyData['keyword'] || ''; this.isCreator = historyData['isCreator'] || 0; this.currentPage = historyData['currentPage'] || 1; + }, + closeComplexUploadDialog(isSuccess) { + if (isSuccess) { + this.searchFlow(); + } } }, computed: { -- Gitee