From 4512b13d87784f3f7cf1db2e9127a0de7c37e8a2 Mon Sep 17 00:00:00 2001 From: heyujie <516346543@qq.com> Date: 星期五, 18 六月 2021 18:47:45 +0800 Subject: [PATCH] 控制所有视频的播放按钮 --- src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue | 397 +++++++++++++++++++++++++++++++++++++++----------------- 1 files changed, 277 insertions(+), 120 deletions(-) diff --git a/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue b/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue index a0e7169..360f613 100644 --- a/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue +++ b/src/pages/shuohuangMonitorAnalyze/components/searchForVideoAnalyze.vue @@ -112,6 +112,7 @@ :key="ind" :index="index + '-' + ind" @click="checkOption(config, option)" + class="highlevel-option" >{{ option.name }}</el-menu-item> </el-submenu> </el-menu> @@ -153,11 +154,11 @@ </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)"> - <img :src="data.VideoCover" alt /> + <img :src="data.VideoCover | fixPath" alt /> </div> <div class="video-info"> <div class="base-info"> @@ -181,9 +182,15 @@ <div class="mark-info"> <div class="abnormal" v-if="data.LableLst && data.LableLst.length"> <span + class="abnormal-label" v-for="(label, index) in data.LableLst" :key="index" - >{{ label.Desc +(index==data.LableLst.length-1?"":"锛�")}}</span> + > + {{ + label.Desc + + (index == data.LableLst.length - 1 ? "" : "锛�") + }} + </span> </div> <div v-else> <span>鏃犲紓甯�</span> @@ -194,7 +201,7 @@ type="info" v-for="(label, index) in data.EventLst" :key="index" - style="margin-right:5px;margin-bottom:5px" + style="margin-right: 5px; margin-bottom: 5px" @click="checkEventVideo(label)" >{{ label.Event }}</el-tag> </div> @@ -204,7 +211,7 @@ </div> </div> <div class="star" @click="toggleFollow(data)"> - <i :class="[data.IsFollow ? 'follow' : '', 'el-icon-star-off']"></i> + <i class="iconfont" :class="[data.IsFollow ? 'follow' : '', 'iconguanzhu']"></i> </div> </div> </el-col> @@ -222,22 +229,28 @@ ></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> + <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="VideoDate" 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"> + <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> </template> </el-table-column> @@ -253,10 +266,22 @@ :total="tableTotal" ></el-pagination> </div> + <!-- + + v-drag v-resize + + --> + <!-- <div > --> + <!-- :modal="false" --> <el-dialog + v-drag + v-resize class="dialog-video" :visible="videoDialogVisible" - @close="videoDialogVisible = false" + @close="closeDial" + :close-on-click-modal="false" + :destroy-on-close="true" + :modal-append-to-body="false" > <div slot="title" class="title"> <div class="center"> @@ -264,18 +289,20 @@ <span>鎾斁瑙嗛</span> </div> </div> - <video-analyze :videoDetails="selectedVideo" /> + <video-analyze v-if="videoDialogVisible" :videoDetails="selectedVideo" /> </el-dialog> + <!-- </div> --> + <el-dialog class="dialog-event" :visible="eventDialogVisible" @close="eventDialogVisible = false" > - <div class="title" slot="title"> - <i class="el-icon-connection"></i> - <span>shoubi瑙嗛</span> - </div> - <event-videos :eventDetail="curEventDetail"></event-videos> + <div class="title" slot="title"> + <i class="el-icon-connection"></i> + <span>{{ curEvName }}瑙嗛</span> + </div> + <event-videos :eventVideoArr="eventVideoArr"></event-videos> </el-dialog> </div> </div> @@ -289,7 +316,7 @@ getRelatedVideoInfo, getLabelMap, delLabel, - editLabel, + getEventVideo, } from "@/api/shuohuang"; import VideoAnalyze from "./videoAnalyze"; import EventVideos from "./eventVideos"; @@ -297,22 +324,30 @@ name: "SearchMain", components: { VideoAnalyze, - EventVideos + EventVideos, }, - data () { + filters: { + fixPath(str) { + if (!str || str == undefined) { + return "" + } + + return str.replace("/opt/vasystem", "") + } + }, + data() { return { CLIP: "http://", keyword: "", IsFollow: "", - //searchTime: [this.$moment(new Date().getTime() - 3600 * 1000 * 24 * 5).format("YYYY-MM-DD HH:mm:ss"), this.$moment(new Date()).format("YYYY-MM-DD HH:mm:ss")], searchTime: [ new Date(2020, 0, 1, 0, 0, 0), - new Date(2020, 11, 31, 23, 59, 59), + new Date(2021, 11, 31, 23, 59, 59), ], curTabPage: 1, curTablePage: 1, tabPageSize: 8, - pageSizes: [2, 8, 12, 24], + pageSizes: [8, 12, 24], tabTotal: 0, tablePageSize: 8, tableTotal: 0, @@ -321,7 +356,7 @@ shortcuts: [ { text: "浠婂ぉ", - onClick (picker) { + onClick(picker) { const end = new Date(); const start = new Date(); start.setHours(0, 0, 0); @@ -330,7 +365,7 @@ }, { text: "鏄ㄥぉ", - onClick (picker) { + onClick(picker) { const end = new Date(); const start = new Date(); start.setTime(start.getTime() - 3600 * 1000 * 24); @@ -342,7 +377,7 @@ }, { text: "杩戜笁澶�", - onClick (picker) { + onClick(picker) { const end = new Date(); const start = new Date(); start.setTime(start.getTime() - 3600 * 1000 * 24 * 3); @@ -351,7 +386,7 @@ }, { text: "杩戜竴鍛�", - onClick (picker) { + onClick(picker) { const end = new Date(); const start = new Date(); start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); @@ -369,81 +404,57 @@ settle: "", IsOperate: "", showType: "menu", - tableData: [ - { - name: "SS4B115_06_B鑺備簩绔徃鏈哄_20201115_091500.mp4", - size: "17.66M", - updateTime: "2020-11-04 15:41", - createTime: "2020-11-04 15:41", - }, - { - name: "SS4B115_06_B鑺備簩绔徃鏈哄_20201115_091700.mp4", - size: "17.76M", - updateTime: "2020-11-04 15:41", - createTime: "2020-11-07 17:41", - }, - ], - tabData: [ - { - id: "ss1", - no: "SS4B115", - frequency: "8084", - time: "2020-09-21 20:45:08", - driver: "寮犱笁", - marks: ["鏈懠鍞ゃ�佸懠鍞や笉鏍囧噯", "瀛︿範鍙告満鏈簲绛�"], - markType: 1, - tags: ["杩涘嚭绔�", "鍙告満绂诲矖"], - follow: true, - }, - { - id: "ss2", - no: "SS4B115", - frequency: "8084", - time: "2020-09-21 20:45:08", - driver: "寮犱笁", - marks: [], - markType: 0, - tags: ["杩涘嚭绔�", "鍙告満绂诲矖"], - follow: false, - }, - ], + tableData: [], + tabData: [], videoDialogVisible: false, hiddenDanger: 1, labelDialogVisible: false, selectedVideo: {}, eventDialogVisible: false, - curEventDetail: {} + curEvName: "", + eventVideoArr: [], }; }, watch: { checkedConfigs: { - handler (n, o) { + handler(n, o) { this.filterSearchData(); }, deep: true, }, }, - mounted () { + mounted() { this.init(); }, methods: { - checkEventVideo (label) { + 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) { + closeDial() { + this.videoDialogVisible = false + this.selectedVideo = {} + }, + handleTabSizeChange(size) { this.tabPageSize = size; this.filterSearchData(); }, - handleTableSizeChange (size) { + handleTableSizeChange(size) { this.tablePageSize = size; this.filterSearchData(); }, - handleCurrentChange () { + handleCurrentChange() { this.filterSearchData(); }, //浜岀骇鏌ヨ - filterSearchData () { + filterSearchData() { let _this = this; let isFollow = ""; if (this.IsFollow === "") { @@ -482,15 +493,29 @@ if (_this.showType == "list") { _this.tableTotal = res.total; _this.tableData = res.data; + debugger } else { _this.tabTotal = res.total; _this.tabData = res.data; - + _this.tabData = _this.tabData.map(function (item) { + const set = new Set(); + item.LableLst.forEach(function (label) { + label.Desc.split("锛�").forEach(function (d) { + set.add(d); + }); + }); + const lblst = []; + set.forEach(function (d) { + lblst.push({ Desc: d }); + }); + item.LableLst = lblst; + return item; + }); } }); }, //涓�绾ф煡璇� - init () { + init() { let _this = this; let query = { KeyWord: this.keyword, @@ -513,21 +538,20 @@ } else { _this.tabTotal = res.total; _this.tabData = res.data; - // debugger _this.tabData = _this.tabData.map(function (item) { - const set = new Set() + const set = new Set(); item.LableLst.forEach(function (label) { label.Desc.split("锛�").forEach(function (d) { - set.add(d) - }) - }) - const lblst = [] + set.add(d); + }); + }); + const lblst = []; set.forEach(function (d) { - lblst.push({ Desc: d }) - }) - item.LableLst = lblst - return item - }) + lblst.push({ Desc: d }); + }); + item.LableLst = lblst; + return item; + }); } res.filterlst.forEach((config) => { @@ -573,7 +597,7 @@ }); }); }, - toggleFollow (data) { + toggleFollow(data) { data.IsFollow = !data.IsFollow; this.updataVideo(data); if (data.IsFollow) { @@ -583,24 +607,24 @@ }); } }, - updataVideo (data) { + updataVideo(data) { let _this = this; updateVideoAnalyze(data).then((res) => { //浜岀骇鏌ヨ }); }, - checkVideoDetail (data) { + checkVideoDetail(data) { let _this = this; _this.selectedVideo = data; _this.videoDialogVisible = true; }, - checkFollow () { }, - checkType (type) { + checkFollow() { }, + checkType(type) { this.showType = type; this.filterSearchData(); }, - clearCheckedConfigs () { + clearCheckedConfigs() { this.checkedConfigs.forEach((config) => { config.isShow = true; config.data.forEach((d) => { @@ -610,7 +634,7 @@ this.checkedConfigs = []; this.showAdvance = true; }, - removeCheckedConfig (config) { + removeCheckedConfig(config) { config.isShow = true; if (config.IsAdvanced) { this.showAdvance = true; @@ -621,7 +645,7 @@ let index = this.checkedConfigs.findIndex((one) => one.id == config.id); this.checkedConfigs.splice(index, 1); }, - checkOption (config, option) { + checkOption(config, option) { if (option) { option.isChecked = true; } @@ -637,20 +661,20 @@ // }) }, - cancleMultCheck (config) { + cancleMultCheck(config) { config.isMultCheck = false; config.data.forEach((opt) => { opt.isChecked = false; }); }, - handleSelect (key, keyPath) { }, - showMore (config) { + handleSelect(key, keyPath) { }, + showMore(config) { config.isShowMore = !config.isShowMore; this.$refs[`options${config.id}`][0].style.height = config.isShowMore ? this.$refs[`options${config.id}`][0].scrollHeight + "px" : this.fixedOneLineHeight + "px"; }, - toggleMultCheck (config) { + toggleMultCheck(config) { config.isMultCheck = !config.isMultCheck; this.optionalConfigs.forEach((conf) => { if (conf.id == config.id) { @@ -659,9 +683,82 @@ conf.isMultCheck = false; }); }, - dataSearch () { + dataSearch() { console.log(this.checkedConfigs); this.$forceUpdate(); + }, + }, + directives: { + drag(el, binding) { + const dialogHeaderEl = el.querySelector(".el-dialog__header"); + const dragDom = el.querySelector(".el-dialog"); + dialogHeaderEl.style.cursor = "move"; + const sty = + dragDom.currentStyle || window.getComputedStyle(dragDom, null); + dialogHeaderEl.onmousedown = (e) => { + const disX = e.clientX - dialogHeaderEl.offsetLeft; + const disY = e.clientY - dialogHeaderEl.offsetTop; + let styL, styT; + + if (sty.left.includes("%")) { + styL = + +document.body.clientWidth * (+sty.left.replace(/\%/g, "") / 100); + styT = + +document.body.clientHeight * (+sty.top.replace(/\%/g, "") / 100); + } else { + styL = +sty.left.replace(/\px/g, ""); + styT = +sty.top.replace(/\px/g, ""); + } + document.onmousemove = function (e) { + const l = e.clientX - disX; + const t = e.clientY - disY; + dragDom.style.left = `${l + styL}px`; + dragDom.style.top = `${t + styT}px`; + }; + document.onmouseup = function (e) { + document.onmousemove = null; + document.onmouseup = null; + }; + }; + }, + resize(el, binding, vnode) { + const dragDom = el.querySelector('.el-dialog') + dragDom.style.overflow = 'hidden' + let minWidth = 400 + let minHeight = 300 // + + // 鎷変几 + let resizeEl = document.createElement('div') + dragDom.appendChild(resizeEl) // 鍦ㄥ脊绐楀彸涓嬭鍔犱笂涓�涓�10-10px鐨勬帶鍒跺潡 + resizeEl.style.cursor = 'nwse-resize' + // resizeEl.style.cursor = 'se-resize' + resizeEl.style.position = 'absolute' + resizeEl.style.height = '12px' + resizeEl.style.width = '12px' + resizeEl.style.right = '0px' + resizeEl.style.bottom = '0px' //榧犳爣鎷変几寮圭獥 + resizeEl.style.background = 'url("/images/desktop/resize.png") no-repeat' //榧犳爣鎷変几寮圭獥 + + resizeEl.onmousedown = (e) => { + // 璁板綍鍒濆x浣嶇疆 + const clientX = e.clientX // 榧犳爣鎸変笅锛岃绠楀綋鍓嶅厓绱犺窛绂诲彲瑙嗗尯鐨勮窛绂� + const disX = e.clientX - resizeEl.offsetLeft + const disY = e.clientY - resizeEl.offsetTop + + document.onmousemove = function (e) { + e.preventDefault() // 绉诲姩鏃剁鐢ㄩ粯璁や簨浠� // 閫氳繃浜嬩欢濮旀墭锛岃绠楃Щ鍔ㄧ殑璺濈 + + const x = e.clientX - disX + (e.clientX - clientX) //杩欓噷 鐢变簬elementUI鐨刣ialog鎺у埗灞呬腑鐨勶紝鎵�浠ユ按骞虫媺浼告晥鏋滄槸鍙屽�� + const y = e.clientY - disY //姣旇緝鏄惁灏忎簬鏈�灏忓楂� + dragDom.style.width = x > minWidth ? `${x}px` : minWidth + 'px' + dragDom.style.height = + y > minHeight ? `${y}px` : minHeight + 'px' + } //鎷変几缁撴潫 + document.onmouseup = function (e) { + document.onmousemove = null + document.onmouseup = null + } + } }, }, }; @@ -669,7 +766,9 @@ <style lang="scss"> .search-for-video-analyze { - padding: 20px 30px; + //padding: 20px 30px; + //鍑烘í鍚戞粴鍔ㄦ潯 + padding: 20px 40px; .flex-box { display: flex; } @@ -732,6 +831,8 @@ width: 100px; text-align: left; background: #f3f3f3; + color: rgb(133, 133, 133); + background: #ecf0fc; } .options-wrap { flex: 1; @@ -763,23 +864,25 @@ justify-content: flex-end; .more { margin-top: 6px; - padding: 0px 12px; + padding: 0px 6px; border: 1px solid #ccc; margin-right: 10px; - width: 48px; + width: 44px; height: 26px; line-height: 26px; + border-radius: 2px; &:hover { color: #6486e7; } } .multCheck { margin-top: 6px; - width: 48px; + width: 44px; height: 26px; line-height: 26px; - padding: 0px 12px; + padding: 0px 6px; border: 1px solid #ccc; + border-radius: 2px; &:hover { color: #7695ec; border-color: #7695ec; @@ -806,6 +909,8 @@ height: 40px; line-height: 40px; border: none; + color: #2c3e50; + font-size: 12px; } .el-menu--popup { display: flex; @@ -813,6 +918,13 @@ li.el-menu-item { display: inline-block; min-width: auto; + } + } + .highlevel-option { + font-size: 12px; + color: #2c3e50; + &:hover { + color: #6486e7; } } } @@ -825,8 +937,7 @@ .data-list { margin-top: 20px; .header-bar { - padding-bottom: 5px; - border-bottom: 1px solid #ddd; + padding-bottom: 10px; .left { float: left; display: flex; @@ -859,11 +970,23 @@ } } .content { - padding-top: 14px; + //padding-top: 14px; + background: #f5f5f5; + background: #fff; + margin: 0 -30px; + margin-bottom: -30px; + padding: 0; // .el-row { // display: flex; // flex-wrap: wrap; // } + .el-table__row { + cursor: pointer; + } + .el-row { + padding-top: 20px; + background: #f5f5f5; + } .el-col { margin-bottom: 10px; } @@ -871,9 +994,13 @@ cursor: pointer; position: relative; text-align: left; - border: 1px solid #dedede; + background: #fff; border-radius: 5px; - //height: 390px; + height: 360px; + margin-bottom: 10px; + &:hover { + box-shadow: 3px 2px 5px 1px rgba(0, 0, 0, 0.3); + } .video-wrap { border-radius: 3px; width: 100%; @@ -895,7 +1022,7 @@ padding: 10px; .base-info { > div { - margin-bottom: 5px; + margin-bottom: 1px; } label { color: #999; @@ -907,6 +1034,9 @@ color: #3d68e1; .abnormal { color: red; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; } .event-tag { margin-top: 10px; @@ -942,22 +1072,41 @@ } .operation { cursor: pointer; + .star { + color: #ccc; + } + .follow { + color: #409eff; + } } } .pagination-center { text-align: center; - margin: 10px auto; + margin: 0 -10px; + padding: 10px 0 20px; + background: #f5f5f5; } } + .el-dialog__wrapper { + top: -22px; + } .dialog-video { - z-index: 2096 !important; + // z-index: 2020 !important; .el-dialog { width: 1180px; - height: 918px; + // height: 893px; } .el-dialog__body { - background: #f5f5f5; + background: #eaeaea; padding: 0; + // height: 100%; + height: inherit; + } + .el-dialog__header { + padding: 3px; + .el-dialog__headerbtn { + top: 6px; + } } .title-partment { font-size: 14px; @@ -975,7 +1124,7 @@ } } .title { - font-size: 18px; + font-size: 15px; } } .dialog-event { @@ -984,11 +1133,19 @@ width: 1000px; height: 800px; background: #efefef; - .el-dialog__body{ + .el-dialog__body { padding: 0; } } } } } +.window-view { + width: 100%; + height: auto; + // height: 100%; + // min-height: 684px; + overflow: auto; + z-index: 2000; +} </style> \ No newline at end of file -- Gitblit v1.8.0