diff --git a/.gitignore b/.gitignore index 78a752d..ed2dd0e 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ selenium-debug.log package-lock.json yarn.lock +/.qoder/ 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 4fee60c..a48d9ff 100644 --- a/vite.config.js +++ b/vite.config.js @@ -42,18 +42,18 @@ export default defineConfig(({ mode, command }) => { proxy: { // https://cn.vitejs.dev/config/#server-proxy '/dev-api': { - // target: 'http://154.8.147.51:8080', + // target: 'https://www.qdintc.com/prod-api/', target: 'http://127.0.0.1:8080', changeOrigin: true, rewrite: (p) => p.replace(/^\/dev-api/, '') }, '/file-upload': { - target: 'http://101.126.95.100:9000', + target: 'http://81.70.89.108:9000', changeOrigin: true, rewrite: (p) => p.replace(/^\/file-upload/, '') }, '/fileUrl': { - target: 'http://101.126.95.100:9000', // 本地 + target: 'http://81.70.89.108:9000', // 本地 changeOrigin: true, rewrite: (p) => p.replace(/^\/fileUrl/, '') }