From d0d459e0e0ceea1e81597683df5b88372f767612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E5=BF=97=E5=86=9B?= <543024265@qq.com> Date: Tue, 1 Jul 2025 13:55:54 +0800 Subject: [PATCH] =?UTF-8?q?refactor(brand-materials):=E9=87=8D=E6=9E=84?= =?UTF-8?q?=E5=93=81=E7=89=8C=E7=89=A9=E6=96=99=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 优化页面布局和样式,使用 flex布局 - 重新组织组件结构,提高可维护性- 改进搜索和分页功能,提升用户体验 - 统一按钮和输入框样式,增强一致性 - 移除冗余代码,提高代码可读性 --- .../brands/brand-materials/index.vue | 2 +- .../businessAnalysisReport.vue | 224 +++++++++++------- .../competitiveProductAnalysisReport.vue | 222 ++++++++++------- .../components/echarts-item/index.vue | 5 +- .../components/echarts-item/style.scss | 3 +- .../put-account/account-dashboard/index.vue | 139 +++++------ .../put-account/account-dashboard/style.scss | 160 ++++++++----- 7 files changed, 436 insertions(+), 319 deletions(-) diff --git a/src/views/property-marketing/brands/brand-materials/index.vue b/src/views/property-marketing/brands/brand-materials/index.vue index ae9efbb..bd9117f 100644 --- a/src/views/property-marketing/brands/brand-materials/index.vue +++ b/src/views/property-marketing/brands/brand-materials/index.vue @@ -144,7 +144,7 @@ const tableData = ref([]); const pageInfo = reactive({ page: 1, pageSize: 20, - total: 100, + total: 0, }); const query = reactive({ diff --git a/src/views/property-marketing/intelligent-solution/businessAnalysisReport.vue b/src/views/property-marketing/intelligent-solution/businessAnalysisReport.vue index 5b4101c..7e9cdf7 100644 --- a/src/views/property-marketing/intelligent-solution/businessAnalysisReport.vue +++ b/src/views/property-marketing/intelligent-solution/businessAnalysisReport.vue @@ -1,75 +1,88 @@ - diff --git a/src/views/property-marketing/intelligent-solution/competitiveProductAnalysisReport.vue b/src/views/property-marketing/intelligent-solution/competitiveProductAnalysisReport.vue index 6ddf2b9..84787ca 100644 --- a/src/views/property-marketing/intelligent-solution/competitiveProductAnalysisReport.vue +++ b/src/views/property-marketing/intelligent-solution/competitiveProductAnalysisReport.vue @@ -1,74 +1,84 @@ - diff --git a/src/views/property-marketing/put-account/account-dashboard/components/echarts-item/index.vue b/src/views/property-marketing/put-account/account-dashboard/components/echarts-item/index.vue index 5e609a3..9404752 100644 --- a/src/views/property-marketing/put-account/account-dashboard/components/echarts-item/index.vue +++ b/src/views/property-marketing/put-account/account-dashboard/components/echarts-item/index.vue @@ -1,8 +1,8 @@