From 0b0dd5c8e87d1de8ca8c9fa70f6d71b156c98733 Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Thu, 18 Jun 2026 13:54:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B6=88=E8=B4=B9=E5=A4=A7=E5=B1=8F?= =?UTF-8?q?=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 --- src/api/invest/statisticAnalysis.js | 27 + .../accountDealLocationScreen/index.vue | 1468 +++++++++++++++++ vite.config.js | 4 +- 3 files changed, 1497 insertions(+), 2 deletions(-) create mode 100644 src/views/invest/accountDealLocationScreen/index.vue diff --git a/src/api/invest/statisticAnalysis.js b/src/api/invest/statisticAnalysis.js index 294e867..385aa3c 100644 --- a/src/api/invest/statisticAnalysis.js +++ b/src/api/invest/statisticAnalysis.js @@ -121,3 +121,30 @@ export function getBankCardStatistics() { method: 'get' }) } + +// 查询交易地点消费地图概览 +export function getAccountDealLocationOverview(query) { + return request({ + url: '/invest/analysis/accountDealLocationOverview', + method: 'get', + params: query + }) +} + +// 查询交易地点消费地图聚合点位 +export function getAccountDealLocationPoints(query) { + return request({ + url: '/invest/analysis/accountDealLocationPoints', + method: 'get', + params: query + }) +} + +// 查询交易地点消费明细 +export function getAccountDealLocationRecords(query) { + return request({ + url: '/invest/analysis/accountDealLocationRecords', + method: 'get', + params: query + }) +} diff --git a/src/views/invest/accountDealLocationScreen/index.vue b/src/views/invest/accountDealLocationScreen/index.vue new file mode 100644 index 0000000..59f29a1 --- /dev/null +++ b/src/views/invest/accountDealLocationScreen/index.vue @@ -0,0 +1,1468 @@ + + + + + diff --git a/vite.config.js b/vite.config.js index 5b9e93d..a48d9ff 100644 --- a/vite.config.js +++ b/vite.config.js @@ -42,8 +42,8 @@ export default defineConfig(({ mode, command }) => { proxy: { // https://cn.vitejs.dev/config/#server-proxy '/dev-api': { - target: 'https://www.qdintc.com/prod-api/', - // target: 'http://127.0.0.1:8080', + // target: 'https://www.qdintc.com/prod-api/', + target: 'http://127.0.0.1:8080', changeOrigin: true, rewrite: (p) => p.replace(/^\/dev-api/, '') },