实现结果总览排除可疑预警
This commit is contained in:
@@ -579,6 +579,21 @@ export default {
|
||||
this.suspiciousPageNum = 1;
|
||||
await this.loadSuspiciousTransactions();
|
||||
},
|
||||
async refreshAfterRiskExcluded() {
|
||||
this.statementDetailCache = {};
|
||||
await this.loadSuspiciousTransactions();
|
||||
if (this.detailVisible && this.detailData && this.detailData.bankStatementId) {
|
||||
try {
|
||||
this.detailLoading = true;
|
||||
this.detailData = await this.fetchStatementDetail(this.detailData.bankStatementId, false);
|
||||
} catch (error) {
|
||||
this.$message.error("刷新流水详情失败");
|
||||
console.error("刷新流水详情失败", error);
|
||||
} finally {
|
||||
this.detailLoading = false;
|
||||
}
|
||||
}
|
||||
},
|
||||
async handlePageChange(pageInfo) {
|
||||
if (typeof pageInfo === "number") {
|
||||
this.suspiciousPageNum = pageInfo;
|
||||
|
||||
Reference in New Issue
Block a user