From 6a04c5f1ca00753ad68c6bc0530cc0309abc76f2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?=
=?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com>
Date: Wed, 19 Feb 2025 08:55:20 +0800
Subject: [PATCH] =?UTF-8?q?=E9=A6=96=E9=A1=B5=E5=88=97=E8=A1=A8=E6=8E=A5?=
=?UTF-8?q?=E5=8F=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/common/home.js | 10 ++++++++++
pages/index.vue | 35 +++++++++++++++++++++++++----------
pages/owner.vue | 10 +++++++++-
3 files changed, 44 insertions(+), 11 deletions(-)
diff --git a/api/common/home.js b/api/common/home.js
index 449a93b..d980912 100644
--- a/api/common/home.js
+++ b/api/common/home.js
@@ -10,5 +10,15 @@ export const HomeApi = {
method: 'GET',
params
})
+ },
+ /**
+ * 获取列表数据
+ */
+ getListData: params => {
+ return request({
+ url: '/system/home/appCount2',
+ method: 'GET',
+ params
+ })
}
}
\ No newline at end of file
diff --git a/pages/index.vue b/pages/index.vue
index cf1430b..05e6780 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -132,16 +132,18 @@
class="tab"
v-for="(item, index) in tabs"
:key="index"
- :style="{ '--index': queryParams.enterprise }"
- @tap="queryParams.enterprise = item.type"
+ :style="{
+ '--index': tabs.findIndex(
+ i => i.type == queryParams.type
+ )
+ }"
+ @tap="changeTab(item.type)"
>
{{ item.name }}
@@ -151,22 +153,22 @@
- 企业名称
+ {{ item.name }}
- 天
+ {{ queryParams.type == 1 ? '天' : '次' }}
@@ -203,6 +205,7 @@ export default {
type: 2
}
],
+ list: [],
color: ['#1B84FF', '#7239EA', '#F6B100', '#F8285A', '#17C653']
}
},
@@ -283,6 +286,14 @@ export default {
return res
})
this.detail.legendData = data
+ this.setPieData(data)
+ this.getList()
+ },
+ async getList() {
+ const res = await HomeApi.getListData(this.queryParams)
+ this.list = res.data
+ },
+ setPieData(data) {
const isMax = data.reduce(
(pre, cur) => pre + Number(cur.pieValue),
0
@@ -347,6 +358,10 @@ export default {
querySelect(v, key) {
this.queryParams[key] = v.detail
this.init()
+ },
+ changeTab(type) {
+ this.queryParams.type = type
+ this.getList()
}
}
}
diff --git a/pages/owner.vue b/pages/owner.vue
index b780dce..b7ed61c 100644
--- a/pages/owner.vue
+++ b/pages/owner.vue
@@ -111,7 +111,10 @@
-
+