This commit is contained in:
guochunsi
2026-01-14 11:41:04 +08:00
parent d0c8ea0223
commit 6055033289
49 changed files with 2043 additions and 1740 deletions

View File

@@ -129,7 +129,7 @@ const getTabStaticDataList = async () => {
tableData.value = []
dataListLoading.value = true
const response = await getTabStaticDataListApi(queryForm)
tableData.value = response.data.data || []
tableData.value = response.data || []
} catch (error) {
console.error('获取统计数据失败', error)
} finally {
@@ -151,7 +151,7 @@ const resetQuery = () => {
const init = async () => {
try {
const data = await list()
planList.value = data.data.data || []
planList.value = data.data || []
if (planList.value.length > 0) {
queryForm.groupId = planList.value[0].id
getTabStaticDataList()