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){