实现结果总览模型与明细区块

This commit is contained in:
wkc
2026-03-19 10:37:53 +08:00
parent 75dbb76e0c
commit e4706fb7e8
5 changed files with 453 additions and 24 deletions

View File

@@ -62,6 +62,83 @@ export const mockOverviewData = {
},
],
},
riskModels: {},
riskDetails: {},
riskModels: {
cardList: [
{ key: "large", title: "大额交易频繁", count: 45, peopleCount: 9 },
{ key: "salary", title: "可疑部门产薪异常", count: 32, peopleCount: 6 },
{ key: "transfer", title: "频繁转账交易", count: 28, peopleCount: 5 },
],
filterOptions: {
modelOptions: [
{ label: "大额交易频繁", value: "large" },
{ label: "频繁转账交易", value: "transfer" },
],
warningTypeOptions: [
{ label: "高风险", value: "high" },
{ label: "中风险", value: "medium" },
],
},
filterValues: {
model: "large",
warningType: "high",
},
peopleList: [
{
name: "黄明",
idNo: "331081199403150329",
department: "风险管理部",
warningType: "高风险",
modelName: "大额交易频繁",
actionLabel: "查看详情",
},
{
name: "王江",
idNo: "331081199102031209",
department: "运营管理部",
warningType: "中风险",
modelName: "频繁转账交易",
actionLabel: "查看详情",
},
],
},
riskDetails: {
transactionList: [
{
tradeDate: "2024-01-15",
counterparty: "李七",
direction: "转出",
accountNo: "李七(08901)",
summary: "转账",
amount: 500000,
actionLabel: "查看详情",
},
{
tradeDate: "2024-01-16",
counterparty: "王五",
direction: "转出",
accountNo: "王五(08901)",
summary: "转账",
amount: -200000,
actionLabel: "查看详情",
},
],
abnormalAccountList: [
{
accountNo: "62209****1234",
accountName: "李四",
bankName: "中国农业银行",
lastTradeDate: "2024-01-15",
handler: "正常",
actionLabel: "查看详情",
},
{
accountNo: "62209****5678",
accountName: "王五",
bankName: "中国工商银行",
lastTradeDate: "2024-01-10",
handler: "正常",
actionLabel: "查看详情",
},
],
},
};