From cc293536e2f9879f092a63dae790473aca9ac9d5 Mon Sep 17 00:00:00 2001
From: gssong <1742057357@qq.com>
Date: 星期四, 07 三月 2024 21:54:47 +0800
Subject: [PATCH] add 添加审批加签 减签

---
 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