| | |
| | | } from "@/api/meeting/index"; |
| | | |
| | | export default { |
| | | /** 搜索按钮操作 */ |
| | | handleQuery() { |
| | | this.queryParams.pageNum = 1; |
| | | this.getList(); |
| | | }, |
| | | /** 重置按钮操作 */ |
| | | resetQuery() { |
| | | this.dateRange = []; |
| | | this.resetForm("queryForm"); |
| | | this.handleQuery(); |
| | | }, |
| | | created() { |
| | | this.getList(); |
| | | }, |
| | |
| | | } |
| | | }, |
| | | methods: { |
| | | /** 搜索按钮操作 */ |
| | | handleQuery() { |
| | | this.queryParams.pageNum = 1; |
| | | this.getList(); |
| | | }, |
| | | /** 重置按钮操作 */ |
| | | resetQuery() { |
| | | this.dateRange = []; |
| | | this.resetForm("queryForm"); |
| | | this.handleQuery(); |
| | | }, |
| | | newRequest() { |
| | | // this.reset(); |
| | | this.open = true; |
| | |
| | | this.queryParams.happenEndTime = this.dateRange.length > 0 && this.dateRange[1] |
| | | listWebcast(this.queryParams).then(response => { |
| | | this.webcastList = response.data.data; |
| | | console.log(this.webcastList,'webcastListwebcastListwebcastList') |
| | | // console.log(this.webcastList,'webcastListwebcastListwebcastList') |
| | | this.total = response.data.total; |
| | | this.loading = false; |
| | | } |