| | |
| | | dateParams.startTime = dateParams[0]; |
| | | dateParams.endTime = dateParams[1] |
| | | } |
| | | imageManagement.getImageResources({ current: this.currentPage, size: this.pageSize, type: this.type, ...dateParams }) |
| | | imageManagement.getImageResources({ current: this.currentPage, size: this.pageSize, type: this.size, ...dateParams }) |
| | | .then(({ records, total }) => { |
| | | this.tableData = records; |
| | | this.totalNum = total; |
| | |
| | | }, |
| | | // 更改违规/违建 |
| | | changeTypeChecked(idx) { |
| | | this.typeList.forEach((item, index) => { |
| | | item.checked = index === idx; |
| | | }) |
| | | this.typeList.forEach(item => { |
| | | item.checked = item.value === idx; |
| | | }); |
| | | this.mystatus = idx + 1; |
| | | this.size = idx; |
| | | this.getImageResourceList(); |