| | |
| | | range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"></el-date-picker> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
| | | <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
| | | <el-button type="primary" icon="el-icon-search" size="small" @click="handleQuery">搜索</el-button> |
| | | <el-button icon="el-icon-refresh" size="small" @click="resetQuery">重置</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | |
| | |
| | | this.queryParams["endAuditingTime"] = this.daterangeAuditingTime[1]; |
| | | } |
| | | listReport(this.queryParams).then(response => { |
| | | this.reportList = response.data; |
| | | this.reportList = response.data.records; |
| | | this.total = response.total; |
| | | this.loading = false; |
| | | }); |