From cc25fa1b8d2269281703508c551119696fcbabab Mon Sep 17 00:00:00 2001
From: luobisheng <727299681@qq.com>
Date: 星期三, 07 十二月 2022 16:57:37 +0800
Subject: [PATCH] 图片上传组件更新
---
src/views/operate/video/index.vue | 40 +++++++++++++++-------------------------
1 files changed, 15 insertions(+), 25 deletions(-)
diff --git a/src/views/operate/video/index.vue b/src/views/operate/video/index.vue
index 5b339ea..e813e4d 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"
@@ -24,9 +17,9 @@
<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 class="findBtn">
+ <el-button class="button-addition" type="primary" @click="handleOpera(null, 'create')">娣诲姞</el-button>
+ </div> -->
</div>
</div>
</header>
@@ -58,7 +51,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 +78,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 +93,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">
@@ -195,12 +188,12 @@
typeList: [
{
name: "鎽勫儚澶存帹閫�",
- value: 1,
+ value: "01",
checked: true,
},
{
name: "鍗曞叺鎺ㄩ��",
- value: 2,
+ value: "03",
checked: false,
},
],
@@ -222,13 +215,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 +300,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