From a04db738202734822de6ef77f526a8b941ec1ea9 Mon Sep 17 00:00:00 2001 From: woody Date: Wed, 3 Sep 2025 13:26:45 +0800 Subject: [PATCH] =?UTF-8?q?feat(performanceDistribution):=20=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E4=B8=9A=E7=BB=A9=E6=9F=A5=E8=AF=A2=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/distribution/directList.vue | 6 + .../distribution/performanceDistribution.vue | 713 +++++++++++++----- config/distribute.js | 51 +- config/request.js | 2 +- pages/performanceEchart/index.vue | 19 +- 5 files changed, 596 insertions(+), 195 deletions(-) diff --git a/components/distribution/directList.vue b/components/distribution/directList.vue index 97c0239..975dea7 100644 --- a/components/distribution/directList.vue +++ b/components/distribution/directList.vue @@ -67,6 +67,12 @@ export default { this.pageNum-- this.getDirectPushList() }, + refresh() { + this.pageNum = 1 + this.total = 0 + this.list = [] + this.getDirectPushList() + }, getDirectPushList() { this.status = 'loading' getDirectPushList({ diff --git a/components/distribution/performanceDistribution.vue b/components/distribution/performanceDistribution.vue index 22aae49..45de658 100644 --- a/components/distribution/performanceDistribution.vue +++ b/components/distribution/performanceDistribution.vue @@ -1,55 +1,159 @@