From 242d318e85df66b916f554d64a026cfe0cb58e19 Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期四, 15 一月 2026 10:26:59 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/cwxt_master' into cwxt_master

---
 ui/admin-ui3/src/views/cwgl/fundFlow/index.vue |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/ui/admin-ui3/src/views/cwgl/fundFlow/index.vue b/ui/admin-ui3/src/views/cwgl/fundFlow/index.vue
index edd98d5..d4a2394 100644
--- a/ui/admin-ui3/src/views/cwgl/fundFlow/index.vue
+++ b/ui/admin-ui3/src/views/cwgl/fundFlow/index.vue
@@ -34,12 +34,15 @@
           :underline="false" :size="size" @click="handleDetails(row)" v-hasPermi="['cwgl:fundFlow:edit']">
           璁ら鏄庣粏
         </el-link>
+          <el-button type="text" icon="View" @click="handleFlow(row)"
+          v-hasPermi="['cwgl:fundFlow:flow']">鏃ュ織</el-button>
         <!-- <el-button type="text" icon="View" @click="handleFlow(row)"
           v-hasPermi="['cwgl:invoiceManage:flow']">鏃ュ織</el-button> -->
 
       </template>
     </avue-crud>
   </basicContainer>
+  <OperationLogModal ref="logModalRef" />
 
   <ClaimBillDialog ref="claimDialogRef" @submit="handleClaimSubmit" />
 </template>
@@ -47,11 +50,14 @@
 <script setup name="fundFlow" lang="ts">
 import { FundFlowI, addFundFlow, delFundFlow, addFundFlowClaimDetailClaim, exportFundFlow, confirmFundFlow, getFundFlow, listFundFlow, updateFundFlow } from "@/api/cwgl/fundFlow";
 import useCurrentInstance from "@/utils/useCurrentInstance";
+  import { listFundFlowLog} from "@/api/cwgl/fundFlowLog";
+
 import { computed, reactive, ref, toRefs } from "vue";
 import { PagesInterface, PageQueryInterface } from "@/utils/globalInterface";
 import { usePagePlus } from "@/hooks/usePagePlus";
 import { hasPermission } from "@/utils/permissionUtils";
 import { listFundFlowClaimDetail } from "@/api/cwgl/fundFlowClaimDetail";
+import OperationLogModal from '@/components/OperationLogModal/index.vue';
 
 import ClaimBillDialog from "../../../components/ClaimBillDialog/index.vue";
 
@@ -285,5 +291,15 @@
   })
 
 };
+
+const logModalRef = ref(null);
+const handleFlow = (row: any,) => {
+  // 杩欓噷鍙互浠� row 涓洿鎺ヨ幏鍙栨棩蹇楋紝鎴栬�呰皟鐢ㄥ悗绔帴鍙f煡璇�
+  listFundFlowLog({flowId:row.id}).then((res) => {
+    if (res.code == 200) {
+     logModalRef.value.open(res.rows,'payable');
+    }
+  });
+}
 /* listFundFlowClaimDetail */
 </script>

--
Gitblit v1.8.0