| | |
| | | let data = videoData.table.filter(item => item.index === this.$route.query.index)[0] |
| | | this.tableHead = data.columns; |
| | | this.cardList = data.card; |
| | | console.log(data, "aaa") |
| | | console.log(this.cardList, "ddd") |
| | | }; |
| | | if (this.$route.query.type === '2') { |
| | | let data = carData.table.filter(item => item.index === this.$route.query.index)[0] |
| | |
| | | getList(url) { |
| | | this.loading = true; |
| | | dataCenter(url, this.queryParams).then(response => { |
| | | this.platformList = response.rows; |
| | | this.platformList = response.data; |
| | | this.total = response.total; |
| | | this.loading = false; |
| | | }); |
| | |
| | | /** 搜索按钮操作 */ |
| | | handleQuery() { |
| | | this.queryParams.pageNum = 1; |
| | | this.getList(); |
| | | this.getList(this.$route.query.url); |
| | | }, |
| | | /** 重置按钮操作 */ |
| | | resetQuery() { |