| | |
| | | </div> |
| | | </div> |
| | | <div class="content" v-show="showType == 'menu'"> |
| | | <el-row :gutter="20" :align="bottom"> |
| | | <el-row :gutter="20" > |
| | | <el-col :xs="8" :sm="6" :md="6" :lg="6" v-for="data in tabData" :key="data.id"> |
| | | <div class="card"> |
| | | <div class="video-wrap" @click="checkVideoDetail(data)"> |
| | |
| | | >{{ scope.row.VideoName }}</div> |
| | | </template> |
| | | </el-table-column> |
| | | |
| | | <el-table-column label="大小" prop="VideoSize" sortable></el-table-column> |
| | | <el-table-column label="修改日期" prop="UpdatedAt" sortable></el-table-column> |
| | | <el-table-column label="创建日期" prop="CreatedAt" sortable></el-table-column> |
| | | <el-table-column label="修改日期" prop="VideoUpdateDate" sortable></el-table-column> |
| | | <el-table-column label="创建日期" prop="VideoCreateDate" sortable></el-table-column> |
| | | |
| | | <el-table-column label="操作"> |
| | | <template slot-scope="scope"> |
| | | <div class="operation"> |
| | | <i class="el-icon-star-off" @click="toggleFollow(scope.row)"></i> |
| | | <div class="star" @click="toggleFollow(scope.row)"> |
| | | <i class="iconfont" :class="[scope.row.IsFollow ? 'follow' : '', 'iconguanzhu']"></i> |
| | | </div> |
| | | <!-- <i class="el-icon-star-off" @click="toggleFollow(scope.row)"></i> --> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | > |
| | | <div class="title" slot="title"> |
| | | <i class="el-icon-connection"></i> |
| | | <span>shoubi视频</span> |
| | | <span>{{curEvName}}视频</span> |
| | | </div> |
| | | <event-videos :eventDetail="curEventDetail"></event-videos> |
| | | <event-videos :eventVideoArr="eventVideoArr"></event-videos> |
| | | </el-dialog> |
| | | </div> |
| | | </div> |
| | |
| | | getLabelMap, |
| | | delLabel, |
| | | editLabel, |
| | | getEventVideo |
| | | } from "@/api/shuohuang"; |
| | | import VideoAnalyze from "./videoAnalyze"; |
| | | import EventVideos from "./eventVideos"; |
| | |
| | | curTabPage: 1, |
| | | curTablePage: 1, |
| | | tabPageSize: 8, |
| | | pageSizes: [2, 8, 12, 24], |
| | | pageSizes: [ 8, 12, 24], |
| | | tabTotal: 0, |
| | | tablePageSize: 8, |
| | | tableTotal: 0, |
| | |
| | | labelDialogVisible: false, |
| | | selectedVideo: {}, |
| | | eventDialogVisible: false, |
| | | curEventDetail: {} |
| | | curEvName: '', |
| | | eventVideoArr: [] |
| | | }; |
| | | }, |
| | | watch: { |
| | |
| | | checkEventVideo (label) { |
| | | this.eventDialogVisible = true; |
| | | this.curEventDetail = label; |
| | | let _this = this; |
| | | getEventVideo({ Event: label.Event, LkgID: label.ParentID }).then(res => { |
| | | _this.eventVideoArr = res.data; |
| | | _this.curEvName = label.Event; |
| | | }) |
| | | }, |
| | | handleTabSizeChange (size) { |
| | | this.tabPageSize = size; |
| | |
| | | } else { |
| | | _this.tabTotal = res.total; |
| | | _this.tabData = res.data; |
| | | // debugger |
| | | _this.tabData = _this.tabData.map(function (item) { |
| | | const set = new Set() |
| | | item.LableLst.forEach(function (label) { |
| | |
| | | height: 40px; |
| | | line-height: 40px; |
| | | border: none; |
| | | color: #2c3e50; |
| | | font-size: 12px; |
| | | } |
| | | .el-menu--popup { |
| | | display: flex; |
| | |
| | | } |
| | | .highlevel-option { |
| | | font-size: 12px; |
| | | color: #2c3e50; |
| | | &:hover { |
| | | color: #6486e7; |
| | | } |
| | |
| | | position: relative; |
| | | text-align: left; |
| | | background: #fff; |
| | | border: 1px solid #dedede; |
| | | border-radius: 5px; |
| | | height: 360px; |
| | | margin-bottom: 10px; |
| | |
| | | } |
| | | .operation { |
| | | cursor: pointer; |
| | | .star{ |
| | | color: #ccc; |
| | | } |
| | | .follow{ |
| | | color: #409eff; |
| | | } |
| | | } |
| | | } |
| | | .pagination-center { |