heyujie
2021-03-10 579fd9fdd67e6dff513c1696f216ccde59d3a9a8
播放器按钮缺失,朔黄视频播放列表点击功能的修改
1个文件已添加
1个文件已修改
16 ■■■■ 已修改文件
public/apps/shuohuangMonitorAnalyze/img/smallscreen.png 补丁 | 查看 | 原始文档 | blame | 历史
src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue 16 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
public/apps/shuohuangMonitorAnalyze/img/smallscreen.png
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;