From e7ff82950218483991771f9f8eb053b8b32163af Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期四, 07 三月 2024 14:23:24 +0800 Subject: [PATCH] update 优化 工作流代码与接口命名 --- src/components/Process/approvalRecord.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Process/approvalRecord.vue b/src/components/Process/approvalRecord.vue index d06e7ef..eb40228 100644 --- a/src/components/Process/approvalRecord.vue +++ b/src/components/Process/approvalRecord.vue @@ -55,7 +55,7 @@ </template> </el-table-column> </el-table> - + </el-popover> </template> </el-table-column> @@ -69,7 +69,7 @@ </el-dialog> </template> <script lang="ts" setup> -import { getHistoryProcessImage, getHistoryRecord } from '@/api/workflow/processInstance'; +import { getHistoryImage, getHistoryRecord } from '@/api/workflow/processInstance'; const { proxy } = getCurrentInstance() as ComponentInternalInstance; import { ref } from 'vue'; const props = defineProps({ @@ -99,7 +99,7 @@ loading.value = true; historyList.value = []; graphicInfoVos.value = []; - getHistoryProcessImage(processInstanceId).then((res) => { + getHistoryImage(processInstanceId).then((res) => { src.value = 'data:image/png;base64,' + res.data }); getHistoryRecord(processInstanceId).then((response) => { -- Gitblit v1.9.3