| | |
| | | getList(e) { |
| | | this.loading = true; |
| | | this.queryParams.params = {}; |
| | | // if (null != this.daterangeReporttime && "" != this.daterangeReporttime) { |
| | | // this.queryParams.params["beginReporttime"] = |
| | | // this.daterangeReporttime[0]; |
| | | // this.queryParams.params["endReporttime"] = this.daterangeReporttime[1]; |
| | | // } |
| | | sessionStorage.removeItem("medicalevaluation"); |
| | | sessionStorage.setItem( |
| | | "medicalevaluation", |
| | | JSON.stringify(this.queryParams) |
| | | ); |
| | | |
| | | // 跳转时的默认进度 |
| | | if (e != null && e != undefined && !isNaN(e)) { |
| | | this.queryParams.recordstate = e; |
| | | } |
| | | // if (this.selecttime[0] != null && this.selecttime[1] != null) { |
| | | // this.queryParams.params["starttime"] = this.selecttime[0]; |
| | | // this.queryParams.params["endReporttime"] = this.selecttime[1]; |
| | | // } |
| | | |
| | | // this.queryParams.city='001' |
| | | //console.log(JSON.stringify(this.queryParams)); |
| | | |
| | | if (this.starttime != "") { |
| | | this.queryParams.starttime = this.starttime; |
| | | } |
| | |
| | | //获取用户列表 |
| | | this.getuserlist(); |
| | | //获取列表 |
| | | if (sessionStorage.getItem("medicalevaluation")) { |
| | | this.queryParams = JSON.parse(sessionStorage.getItem("medicalevaluation")); |
| | | console.log(this.queryParams, "queryParams"); |
| | | } |
| | | this.getList(); |
| | | } |
| | | // //生命周期 - 挂载完成(可以访问DOM元素) |