From b5e8454aebf70747177a3be47efe3011b875daf4 Mon Sep 17 00:00:00 2001 From: songgaoshuai <1742057357@qq.com> Date: Wed, 14 Jun 2023 18:47:33 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=B5=81=E7=A8=8B=E9=A2=84?= =?UTF-8?q?=E8=A7=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Process/approvalRecord.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/Process/approvalRecord.vue b/src/components/Process/approvalRecord.vue index bf150c5..1a27624 100644 --- a/src/components/Process/approvalRecord.vue +++ b/src/components/Process/approvalRecord.vue @@ -39,7 +39,8 @@ export default { loading:false, src:"", visible:false, - historyList:[] + historyList:[], + graphicInfoVos:[] }; }, methods: { @@ -48,7 +49,8 @@ export default { this.loading = true this.src = getHistoryProcessImage(processInstanceId) getHistoryRecord(processInstanceId).then(response => { - this.historyList = response.data + this.historyList = response.data.historyRecordList + this.graphicInfoVos = response.data.graphicInfoVos this.loading = false }) }