adjust the display order of value metrics

This commit is contained in:
MaysWind
2026-04-18 15:34:01 +08:00
parent d73704af66
commit e89aa10137
3 changed files with 30 additions and 30 deletions
+6 -6
View File
@@ -135,13 +135,13 @@ export interface InsightsExplorerTransactionStatisticData {
netIncome: number;
averageAmount: number;
medianAmount: number;
p90Amount: number;
top5AmountShare?: number;
transactionsFor80PercentAmount?: number;
minimumAmount: number;
maximumAmount: number;
p90Amount: number;
range: number;
interquartileRange: number;
top5AmountShare?: number;
transactionsFor80PercentAmount?: number;
variance?: number;
standardDeviation?: number;
coefficientOfVariation?: number;
@@ -689,13 +689,13 @@ export const useExplorersStore = defineStore('explorers', () => {
netIncome: 0,
averageAmount: 0,
medianAmount: 0,
p90Amount: 0,
top5AmountShare: undefined,
transactionsFor80PercentAmount: undefined,
minimumAmount: Number.MAX_SAFE_INTEGER,
maximumAmount: Number.MIN_SAFE_INTEGER,
p90Amount: 0,
range: 0,
interquartileRange: 0,
top5AmountShare: undefined,
transactionsFor80PercentAmount: undefined,
variance: undefined,
standardDeviation: undefined,
coefficientOfVariation: undefined