From aa5973abc2272df6892703cde8c78ee184ad714b Mon Sep 17 00:00:00 2001
From: zxl <763096477@qq.com>
Date: 星期五, 08 八月 2025 17:04:12 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev

---
 manager/src/views/video/VideoList.vue |   33 +++++++++++++++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)

diff --git a/manager/src/views/video/VideoList.vue b/manager/src/views/video/VideoList.vue
index cd7070a..f3e5c72 100644
--- a/manager/src/views/video/VideoList.vue
+++ b/manager/src/views/video/VideoList.vue
@@ -402,6 +402,9 @@
           <Button type="primary" size="small" style="margin-right: 5px" v-if="row.status === '99'"
                   @click="openAuditing(row)">瀹℃牳
           </Button>
+<!--          <Button type="primary" size="small" style="margin-right: 5px"-->
+<!--                  @click="editVideo(row)">缂栬緫-->
+<!--          </Button>-->
           <Button type="error" size="small" style="margin-right: 5px" v-if="row.status === '1'"
                   @click="openVideoDown(row)">涓嬫灦
           </Button>
@@ -704,6 +707,36 @@
     this.getTags('')
   },
   methods: {
+    editVideo(row){
+      // this.uploadVideoForm = {};
+      // this.uploadVideoForm = row;
+      // this.showUploadVideoShow = true;
+      console.log('------------------->缂栬緫',JSON.stringify(row));
+      this.upLoadVideoShow = true;
+      this.videoTagList = []
+      this.chooseTag = row.tagList
+      this.uploadVideoForm = {
+        id: '',
+        title: '',
+        cover: "",
+        videoFileKey: "",
+        videoDuration: 0,
+        videoFit: "cover",
+        videoContentType: 'video',
+        videoImgs: [],
+        showListImages: [],
+        tags: [],
+        fileInfo: {},
+        goodsList: []
+      }
+      this.uploadVideoForm = row
+      recommend({
+        searchType: "HOT"
+      }).then(res => {
+        this.videoTagList = res.data;
+      })
+      this.searchGoodsList();
+    },
     closeGeneralQrCode(){
       this.showGeneralQrCode = false;
       this.QRCodeUrl = '';

--
Gitblit v1.8.0