|
@@ -156,7 +156,6 @@ export default {
|
|
|
this.classifyOptions = res.data
|
|
|
}
|
|
|
})
|
|
|
- console.log(this.channelId, this.form);
|
|
|
channelList({
|
|
|
channelId: this.channelId,
|
|
|
audioType: this.form.channelType,
|
|
@@ -168,7 +167,9 @@ export default {
|
|
|
this.$nextTick(() => {
|
|
|
this.tableData.map(i => {
|
|
|
let row = res.data[0].pageData.records.find(j => j.id === i.audioId)
|
|
|
- this.$refs.table.toggleRowSelection(row)
|
|
|
+ if (row) {
|
|
|
+ this.$refs.table.toggleRowSelection(row)
|
|
|
+ }
|
|
|
})
|
|
|
})
|
|
|
}
|