From 336be0724113bb283115c13dd910e8fccbb56d36 Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Thu, 18 Jun 2026 22:49:26 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=BB=BC=E5=90=88=E5=88=86=E6=9E=90?= =?UTF-8?q?=E5=A4=A7=E5=B1=8F=E5=8A=9F=E8=83=BD=E6=96=B0=E5=A2=9E=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../accountDealLocationScreen/index.vue | 626 +++++- .../transactionAnalysisScreen/index.vue | 1858 +++++++++++++++++ 2 files changed, 2372 insertions(+), 112 deletions(-) create mode 100644 src/views/invest/transactionAnalysisScreen/index.vue diff --git a/src/views/invest/accountDealLocationScreen/index.vue b/src/views/invest/accountDealLocationScreen/index.vue index 59f29a1..795204b 100644 --- a/src/views/invest/accountDealLocationScreen/index.vue +++ b/src/views/invest/accountDealLocationScreen/index.vue @@ -70,24 +70,53 @@ +
+
+ 热点占比 + {{ formatPercent(topPointShare) }} + {{ topPoint?.locationName || '暂无热点' }} +
+
+ 点均消费 + {{ formatMoney(averageLocationAmount) }} + 按定位地点均摊 +
+
+ 当前点位占比 + {{ formatPercent(selectedPointShare) }} + {{ selectedPoint?.locationName || '未选择点位' }} +
+
+ 最近交易 + {{ latestRecordTime }} + {{ latestRecordName }} +
+
+
地点消费排行
@@ -97,23 +126,19 @@
点位明细 - {{ selectedPoint.dealCount || 0 }}笔交易
当前点位 {{ selectedPoint.locationName || '未命名地点' }} + {{ selectedPoint.locationAddress || '暂无地址' }}
累计消费 {{ formatMoney(selectedPoint.totalAmount) }}
-
- 地址 - {{ selectedPoint.locationAddress || '暂无地址' }} -
交易笔数 @@ -123,13 +148,45 @@ 单笔均值 {{ formatMoney(getAverageAmount(selectedPoint)) }}
-
- 经纬度 - {{ formatCoordinate(selectedPoint) }} +
+
+
+ + 正在加载点位流水 +
+
+
+
+ 子类构成 + {{ pointCategoryStats.length }}类 +
+
+
+ {{ item.label }} + {{ formatMoney(item.amount) }} +
+
+ +
+
+
+
+
+ 账户分布 + {{ pointAccountStats.length }}个 +
+
+
+ {{ item.label }} + {{ item.count }}笔 +
+
+ +
-
+
交易流水 最新 {{ recordList.length }} 条 @@ -153,7 +210,8 @@
- + +
@@ -165,10 +223,11 @@ + +