From c171dda262806192f34effbf989aaded99e45c38 Mon Sep 17 00:00:00 2001
From: WXL <1785969728@qq.com>
Date: 星期五, 28 六月 2024 10:29:33 +0800
Subject: [PATCH] 11
---
src/views/project/donatefinish/index.vue | 9 ++++++---
1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/src/views/project/donatefinish/index.vue b/src/views/project/donatefinish/index.vue
index 9b7f714..fc5c30a 100644
--- a/src/views/project/donatefinish/index.vue
+++ b/src/views/project/donatefinish/index.vue
@@ -705,9 +705,10 @@
};
},
created() {
- // this.getDicts('country').then(res=>{
- // this.nationality =res.data
- // })
+ if (sessionStorage.getItem("donatefinish")) {
+ this.queryParams = JSON.parse(sessionStorage.getItem("donatefinish"));
+ console.log(this.queryParams, "queryParams");
+ }
},
activated() {
this.selecttime = "";
@@ -956,6 +957,8 @@
getList() {
this.loading = true;
this.queryParams.params = {};
+ sessionStorage.removeItem("donatefinish");
+ sessionStorage.setItem("donatefinish", JSON.stringify(this.queryParams));
if (null != this.daterangeReporttime && "" != this.daterangeReporttime) {
this.queryParams.params[
"beginReporttime"
--
Gitblit v1.9.3