wjj vor 1 Monat
Ursprung
Commit
73259446b5
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
  1. 6 1
      src/views/course/userVideo/index.vue

+ 6 - 1
src/views/course/userVideo/index.vue

@@ -658,7 +658,12 @@ export default {
         isAudit:1
       },
       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(){
       this.getList()