| | |
| | | /** 查询捐献基础列表 */ |
| | | getBaseInfoList(e) { |
| | | this.loading = true; |
| | | sessionStorage.removeItem("organallocation"); |
| | | sessionStorage.setItem( |
| | | "organallocation", |
| | | JSON.stringify(this.queryParams) |
| | | ); |
| | | if (this.queryParams.recordstate == "") { |
| | | this.queryParams.recordstate = null; |
| | | } |
| | |
| | | }, |
| | | //生命周期 - 创建完成(可以访问当前this实例) |
| | | created() { |
| | | if (sessionStorage.getItem("organallocation")) { |
| | | this.queryParams = JSON.parse(sessionStorage.getItem("organallocation")); |
| | | console.log(this.queryParams, "queryParams"); |
| | | } |
| | | this.getBaseInfoList(); |
| | | this.resetForm(); |
| | | } |