From 22d9bd7152c6de2d71afade6ab7b5f788d023578 Mon Sep 17 00:00:00 2001
From: Oliver <1070107765@qq.com>
Date: 星期一, 12 十二月 2022 18:07:39 +0800
Subject: [PATCH] fix bug

---
 src/views/operate/video/index.vue |   38 +++++++++++++-------------------------
 1 files changed, 13 insertions(+), 25 deletions(-)

diff --git a/src/views/operate/video/index.vue b/src/views/operate/video/index.vue
index 5b339ea..0283a80 100644
--- a/src/views/operate/video/index.vue
+++ b/src/views/operate/video/index.vue
@@ -3,14 +3,7 @@
     <header>
       <div class="headerContent">
         <div class="search">
-          <span>绛涢�夋潯浠�:</span>
-          <div class="option">
-            <el-input
-              v-model="searchContent"
-              placeholder="璇疯緭鍏ュ唴瀹�"
-            ></el-input>
-          </div>
-          <span>涓婁紶鏃堕棿:</span>
+          <span>涓婁紶鏃堕棿锛�</span>
           <div class="option">
             <el-date-picker
                 v-model="datePicked"
@@ -23,9 +16,6 @@
           </div>
           <div class="findBtn">
             <el-button type="primary" @click="searchVideoList">鏌ヨ</el-button>
-          </div>
-          <div class="findBtn">
-            <el-button type="primary" @click="handleOpera(null, 'create')">娣诲姞瑙嗛</el-button>
           </div>
         </div>
       </div>
@@ -58,7 +48,7 @@
           @selection-change="tableChange"
         >
           <el-table-column type="selection" min-width="5"> </el-table-column>
-          <el-table-column prop="baseId" label="鎵�灞炰簨浠剁紪鍙�" min-width="18">
+          <el-table-column prop="code" label="鎵�灞炰簨浠剁紪鍙�" min-width="18">
           </el-table-column>
           <el-table-column prop="category" label="闂绫诲埆" min-width="8">
             <template slot-scope="scope">
@@ -85,10 +75,10 @@
             <template slot-scope="scope">
               <div class="operation">
                 <span @click="handleOpera(scope.row, 'view')">鏌ョ湅</span>
-                <span class="line">|</span>
-                <span @click="handleOpera(scope.row, 'update')">淇敼</span>
-                <span class="line">|</span>
-                <span @click="handleDelete(scope.row)">鍒犻櫎</span>
+                <span v-if="mystatus === 2" class="line">|</span>
+                <span v-if="mystatus === 2" @click="handleOpera(scope.row, 'update')">淇敼</span>
+                <span v-if="mystatus === 2" class="line">|</span>
+                <span v-if="mystatus === 2" @click="handleDelete(scope.row)">鍒犻櫎</span>
               </div>
             </template>
           </el-table-column>
@@ -100,7 +90,7 @@
           :key="dialogTitle"
           width="40%"
           :title="dialogTitle">
-          <updateInterface :isUpdate="isUpdate" :dialogData="dialogData" @closeDialog="closeDialog" />
+          <updateInterface v-if="isShowDialog" :isUpdate="isUpdate" :dialogData="dialogData" @closeDialog="closeDialog" />
         </el-dialog>
 
         <div class="tools">
@@ -155,6 +145,7 @@
 import { CATEGOTY, EVENT_SOURCE } from "@/utils/helper";
 
 export default {
+  name: 'video-upload-page',
   components: { updateInterface },
   data() {
     return {
@@ -195,12 +186,12 @@
       typeList: [
         {
           name: "鎽勫儚澶存帹閫�",
-          value: 1,
+          value: "01",
           checked: true,
         },
         {
           name: "鍗曞叺鎺ㄩ��",
-          value: 2,
+          value: "03",
           checked: false,
         },
       ],
@@ -222,13 +213,8 @@
     }
   },
   created() {
-    this.statusArr[0] = 6;
+    this.searchContent = this.typeList.find((item) => item.checked).value;
     this.searchVideoList();
-    this.typeList.forEach((item) => {
-      if (item.checked) {
-        this.statusArr[1] = item.value;
-      }
-    });
   },
   methods: {
     // 椤堕儴涓嬫媺妗�
@@ -312,6 +298,8 @@
       });
       this.mystatus = idx + 1;
       this.statusArr[1] = this.typeList[idx].value;
+      this.searchContent = this.typeList[idx].value;
+      this.searchVideoList();
     },
     // 璁剧疆琛ㄦ牸鏂戦┈绾�
     tableRowClassName({ row, rowIndex }) {

--
Gitblit v1.8.0