|  |  |  | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  |  | 
|---|
|  |  |  | <el-col :span="12"> | 
|---|
|  |  |  | <el-form-item label="报告日期"> | 
|---|
|  |  |  | <el-form-item label="案例时间"> | 
|---|
|  |  |  | <el-date-picker | 
|---|
|  |  |  | style="width: 100%" | 
|---|
|  |  |  | v-model="selecttime" | 
|---|
|  |  |  | 
|---|
|  |  |  | /** 查询捐献基础列表 */ | 
|---|
|  |  |  | 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(); | 
|---|
|  |  |  | } | 
|---|