From b246b3e1f2d722bff0c5b90d85db25940bec7c06 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BA=9E=E4=B8=9C=E6=97=AD?= <850374051@qq.com>
Date: Thu, 17 Jul 2025 11:28:39 +0800
Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E6=94=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/sunVillage_info/list_operatingAssets_detail.vue | 2 +-
src/views/sunVillage_info/list_revenueAndExpenditure.vue | 4 +++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/views/sunVillage_info/list_operatingAssets_detail.vue b/src/views/sunVillage_info/list_operatingAssets_detail.vue
index 6b092aab..4b4b5817 100644
--- a/src/views/sunVillage_info/list_operatingAssets_detail.vue
+++ b/src/views/sunVillage_info/list_operatingAssets_detail.vue
@@ -9,7 +9,7 @@
-
+
diff --git a/src/views/sunVillage_info/list_revenueAndExpenditure.vue b/src/views/sunVillage_info/list_revenueAndExpenditure.vue
index bdfa3cff..a7c97595 100644
--- a/src/views/sunVillage_info/list_revenueAndExpenditure.vue
+++ b/src/views/sunVillage_info/list_revenueAndExpenditure.vue
@@ -110,7 +110,7 @@
var _this = this;
console.log(_this.queryParams)
financialPublicDetailReport(_this.queryParams).then(response => {
- _this.listLength = response.total;
+ _this.listLength = response.total == 0 ? 0 : (response.total - 1);
response.rows.map(res=>{
// res.pictureType = this.selectDictLabel(this.pictureTypeOptions, res.pictureType);
_this.applicationList.push(res);
@@ -139,6 +139,8 @@
this.showTab = false;
this.applicationList = [];
this.queryParams.pageNum = 1;
+ this.loading = true;
+ this.finished = false;
this.getList();
},
tabClick(year){