From 579fd9fdd67e6dff513c1696f216ccde59d3a9a8 Mon Sep 17 00:00:00 2001 From: heyujie <516346543@qq.com> Date: 星期三, 10 三月 2021 18:02:17 +0800 Subject: [PATCH] 播放器按钮缺失,朔黄视频播放列表点击功能的修改 --- src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue b/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue index 0b904a2..eb74ebd 100644 --- a/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue +++ b/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue @@ -224,13 +224,10 @@ ></el-pagination> </div> <div class="content" v-show="showType == 'list'"> - <el-table :data="tableData" fit ref="elTable"> + <el-table :data="tableData" fit ref="elTable" @row-click="checkVideoDetail" > <el-table-column label="鍚嶇О" prop="VideoName" sortable width="500"> - <template slot-scope="scope"> - <div - style="cursor: pointer" - @click="checkVideoDetail(scope.row)" - >{{ scope.row.VideoName }}</div> + <template slot-scope="scope" style="cursor: pointer"> + <div>{{ scope.row.VideoName }}</div> </template> </el-table-column> @@ -241,8 +238,8 @@ <el-table-column label="鎿嶄綔"> <template slot-scope="scope"> <div class="operation"> - <div class="star" @click="toggleFollow(scope.row)"> - <i class="iconfont" :class="[scope.row.IsFollow ? 'follow' : '', 'iconguanzhu']"></i> + <div class="star" > + <i class="iconfont" :class="[scope.row.IsFollow ? 'follow' : '', 'iconguanzhu']" @click.stop="toggleFollow(scope.row)"></i> </div> <!-- <i class="el-icon-star-off" @click="toggleFollow(scope.row)"></i> --> </div> @@ -909,6 +906,9 @@ // display: flex; // flex-wrap: wrap; // } + .el-table__row{ + cursor: pointer; + } .el-row { padding-top: 20px; background: #f5f5f5; -- Gitblit v1.8.0