补充项目详情风险人员导出能力

This commit is contained in:
wkc
2026-03-30 15:59:06 +08:00
parent b96161ecf4
commit 933214a495
16 changed files with 386 additions and 25 deletions

View File

@@ -1,7 +1,7 @@
<template>
<section class="risk-people-section">
<div class="section-toolbar">
<el-button size="mini" type="text">导出</el-button>
<el-button size="mini" type="text" @click="handleRiskPeopleExport">导出</el-button>
</div>
<el-table v-loading="tableLoading" :data="overviewList" class="people-table">
@@ -205,6 +205,18 @@ export default {
resolveModelTagStyle(tag) {
return CORE_TAG_PALETTE[tag.modelCode] || {};
},
handleRiskPeopleExport() {
if (!this.projectId) {
return;
}
this.download(
"ccdi/project/overview/risk-people/export",
{
projectId: this.projectId,
},
`风险人员总览_${this.projectId}_${new Date().getTime()}.xlsx`
);
},
handleViewProject(row) {
this.$emit("view-project-analysis", row);
},