|
@@ -658,7 +658,12 @@ export default {
|
|
|
isAudit:1
|
|
isAudit:1
|
|
|
},
|
|
},
|
|
|
this.auditDialog.open=true;
|
|
this.auditDialog.open=true;
|
|
|
- this.auditForm.videoIds = [row.videoId] || this.ids;
|
|
|
|
|
|
|
+ if (row.videoId) {
|
|
|
|
|
+ this.auditForm.videoIds = [row.videoId];
|
|
|
|
|
+ } else {
|
|
|
|
|
+ this.auditForm.videoIds = this.ids;
|
|
|
|
|
+ }
|
|
|
|
|
+ //this.auditForm.videoIds = row.videoId || this.ids;
|
|
|
},
|
|
},
|
|
|
handleClickX(){
|
|
handleClickX(){
|
|
|
this.getList()
|
|
this.getList()
|