Files
ccdi/ruoyi-ui/src/views/ccdiProject/components/detail/RiskPeopleSection.vue

118 lines
3.5 KiB
Vue

<template>
<section class="risk-people-section">
<div class="section-card">
<div class="block">
<div class="block-header">
<div>
<div class="block-title">风险人员总览</div>
<div class="block-subtitle">展示命中风险规则的重点人员</div>
</div>
<el-button size="mini" type="text">导出</el-button>
</div>
<el-table :data="sectionData.overviewList || []" class="people-table">
<el-table-column type="index" label="序号" width="60" />
<el-table-column prop="name" label="姓名" min-width="100" />
<el-table-column prop="idNo" label="身份证号" min-width="180" />
<el-table-column prop="department" label="所属部门" min-width="140" />
<el-table-column prop="riskCount" label="疑似违规数" min-width="100" />
<el-table-column prop="riskPoint" label="核心异常点" min-width="220" />
<el-table-column label="操作" width="100" align="right">
<template slot-scope="scope">
<el-button type="text" size="mini">{{ scope.row.actionLabel || "查看详情" }}</el-button>
</template>
</el-table-column>
</el-table>
</div>
<div class="block">
<div class="block-header">
<div>
<div class="block-title">中高风险人员TOP10</div>
<div class="block-subtitle">按风险等级和命中数量聚焦重点对象</div>
</div>
<el-button size="mini" type="text">导出</el-button>
</div>
<el-table :data="sectionData.topRiskList || []" class="people-table">
<el-table-column type="index" label="排名" width="60" />
<el-table-column prop="name" label="姓名" min-width="100" />
<el-table-column prop="idNo" label="身份证号" min-width="180" />
<el-table-column prop="department" label="所属部门" min-width="140" />
<el-table-column prop="riskLevel" label="风险等级" min-width="100">
<template slot-scope="scope">
<el-tag size="mini" :type="scope.row.riskLevelType || 'danger'" effect="plain">
{{ scope.row.riskLevel }}
</el-tag>
</template>
</el-table-column>
<el-table-column prop="modelCount" label="命中模型数" min-width="100" />
<el-table-column label="操作" width="100" align="right">
<template slot-scope="scope">
<el-button type="text" size="mini">{{ scope.row.actionLabel || "查看详情" }}</el-button>
</template>
</el-table-column>
</el-table>
</div>
</div>
</section>
</template>
<script>
export default {
name: "RiskPeopleSection",
props: {
sectionData: {
type: Object,
default: () => ({}),
},
},
};
</script>
<style lang="scss" scoped>
.risk-people-section {
margin-bottom: 16px;
}
.section-card {
padding: 20px;
border-radius: 16px;
background: #fff;
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.block + .block {
margin-top: 24px;
}
.block-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 14px;
}
.block-title {
font-size: 16px;
font-weight: 600;
color: #1f2937;
}
.block-subtitle {
margin-top: 4px;
font-size: 12px;
color: #94a3b8;
}
.people-table {
border-radius: 12px;
overflow: hidden;
}
:deep(.people-table th) {
background: #f8fafc;
color: #64748b;
}
</style>