From 498750349776ee73593654ce40e2cc708e712be2 Mon Sep 17 00:00:00 2001 From: fangyuan <527392886@qq.com> Date: 星期三, 30 十一月 2022 16:39:41 +0800 Subject: [PATCH] 信息管理页面批量操作修改 --- src/views/operate/video/index.vue | 38 +++++++++++++++----------------------- 1 files changed, 15 insertions(+), 23 deletions(-) diff --git a/src/views/operate/video/index.vue b/src/views/operate/video/index.vue index b458c79..b101163 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" @@ -25,7 +18,7 @@ <el-button type="primary" @click="searchVideoList">鏌ヨ</el-button> </div> <div class="findBtn"> - <el-button type="primary" @click="handleOpera(null, 'create')">娣诲姞瑙嗛</el-button> + <el-button class="button-addition" type="primary" @click="handleOpera(null, 'create')">娣诲姞</el-button> </div> </div> </div> @@ -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"> @@ -96,9 +89,11 @@ <!-- 鏌ョ湅淇敼椤甸潰 --> <el-dialog :visible.sync="isShowDialog" + :destroy-on-close="true" + :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"> @@ -193,12 +188,12 @@ typeList: [ { name: "鎽勫儚澶存帹閫�", - value: 1, + value: null, checked: true, }, { name: "鍗曞叺鎺ㄩ��", - value: 2, + value: "03", checked: false, }, ], @@ -220,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: { // 椤堕儴涓嬫媺妗� @@ -305,11 +295,13 @@ }, // 鏇存敼杩濊/杩濆缓 changeTypeChecked(idx) { - this.typeList.forEach((item, index) => { - item.checked = index === idx; - }); + if(idx==1){ + this.searchContent="03"; + }else{ + this.searchContent=null; + } this.mystatus = idx + 1; - this.statusArr[1] = this.typeList[idx].value; + this.searchVideoList(); }, // 璁剧疆琛ㄦ牸鏂戦┈绾� tableRowClassName({ row, rowIndex }) { -- Gitblit v1.8.0