From 5cb471c388d5b9a6829f1045d19f0644d983822c Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 20 十一月 2025 17:07:48 +0800
Subject: [PATCH] fix: s
---
src/views/MaterialReview/MaterialReReviewList.vue | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/views/MaterialReview/MaterialReReviewList.vue b/src/views/MaterialReview/MaterialReReviewList.vue
index 39f1213..8a4dbb8 100644
--- a/src/views/MaterialReview/MaterialReReviewList.vue
+++ b/src/views/MaterialReview/MaterialReReviewList.vue
@@ -61,6 +61,7 @@
</ProTableV2>
<ParkBountyApplyRedoDialog v-bind="dialogProps" />
</AppContainer>
+ <OperateHistoryLogDialog v-bind="logDialogProps" />
</LoadingLayout>
</template>
@@ -85,7 +86,12 @@
import * as parkBountyApplyServices from '@/services/api/ParkBountyApply';
import _ from 'lodash';
import { ModelValueType } from 'element-plus';
-import { useAccess, useGlobalEventContext, useIndustrialParkDropDownList } from '@/hooks';
+import {
+ useAccess,
+ useGlobalEventContext,
+ useIndustrialParkDropDownList,
+ useOpenLogDialog,
+} from '@/hooks';
import ParkBountyApplyRedoDialog from './components/ParkBountyApplyRedoDialog.vue';
defineOptions({
@@ -113,9 +119,11 @@
},
extraProps: {
hide: (row: API.GetParkBountyApplyListOutput) =>
- row.outReCheckStatus !== BountyCheckStatusEnum.CheckPassed,
+ row.outReCheckStatus !== BountyCheckStatusEnum.CheckPassed ||
+ !row.dualReviewOfGovernmentAffairs,
},
},
+ logBtn: { emits: { onClick: (role) => openLogDialog(role.id) } },
};
const { checkSubModuleItemShow, column, operationBtns } = useAccess({
@@ -243,4 +251,6 @@
}
} catch (error) {}
}
+
+const { openLogDialog, logDialogProps } = useOpenLogDialog();
</script>
--
Gitblit v1.9.1