| | |
| | | :key="ind" |
| | | :index="index + '-' + ind" |
| | | @click="checkOption(config, option)" |
| | | class="highlevel-option" |
| | | >{{ option.name }}</el-menu-item |
| | | > |
| | | </el-submenu> |
| | |
| | | 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 > |
| | | <div v-else> |
| | | <span>无异常</span> |
| | | </div> |
| | | <div |
| | |
| | | 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> |
| | |
| | | </div> |
| | | <div class="star" @click="toggleFollow(data)"> |
| | | <i |
| | | :class="[data.IsFollow ? 'follow' : '', 'el-icon-star-off']" |
| | | class="iconfont" |
| | | :class="[data.IsFollow ? 'follow' : '', 'iconguanzhu']" |
| | | ></i> |
| | | </div> |
| | | </div> |
| | |
| | | ></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" |
| | |
| | | ></el-table-column> |
| | | <el-table-column |
| | | label="修改日期" |
| | | prop="UpdatedAt" |
| | | prop="VideoUpdateDate" |
| | | sortable |
| | | ></el-table-column> |
| | | <el-table-column |
| | | label="创建日期" |
| | | prop="CreatedAt" |
| | | 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> |
| | |
| | | :total="tableTotal" |
| | | ></el-pagination> |
| | | </div> |
| | | <el-dialog |
| | | class="dialog-video" |
| | | :visible="videoDialogVisible" |
| | | @close="videoDialogVisible = false" |
| | | > |
| | | <div slot="title" class="title"> |
| | | <div class="center"> |
| | | <i class="el-icon-connection"></i> |
| | | <span>播放视频</span> |
| | | <!-- |
| | | |
| | | v-drag v-resize |
| | | |
| | | --> |
| | | <!-- <div > --> |
| | | <!-- :modal="false" --> |
| | | <el-dialog v-drag v-resize |
| | | class="dialog-video" |
| | | :visible="videoDialogVisible" |
| | | @close="closeDial" |
| | | :close-on-click-modal="false" |
| | | :destroy-on-close="true" |
| | | :modal-append-to-body="false" |
| | | > |
| | | <div slot="title" class="title"> |
| | | <div class="center"> |
| | | <i class="el-icon-connection"></i> |
| | | <span>播放视频</span> |
| | | </div> |
| | | </div> |
| | | <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>{{ curEvName }}视频</span> |
| | | </div> |
| | | <video-analyze :videoDetails="selectedVideo" /> |
| | | <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"; |
| | | export default { |
| | | name: "SearchMain", |
| | | components: { |
| | | VideoAnalyze, |
| | | EventVideos, |
| | | }, |
| | | 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), |
| | |
| | | curTabPage: 1, |
| | | curTablePage: 1, |
| | | tabPageSize: 8, |
| | | pageSizes: [2, 8, 12, 24], |
| | | pageSizes: [8, 12, 24], |
| | | tabTotal: 0, |
| | | tablePageSize: 8, |
| | | tableTotal: 0, |
| | |
| | | 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, |
| | | curEvName: "", |
| | | eventVideoArr: [], |
| | | }; |
| | | }, |
| | | watch: { |
| | |
| | | this.init(); |
| | | }, |
| | | methods: { |
| | | 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; |
| | | } |
| | | ); |
| | | }, |
| | | closeDial(){ |
| | | this.videoDialogVisible = false |
| | | this.selectedVideo={} |
| | | }, |
| | | handleTabSizeChange(size) { |
| | | this.tabPageSize = size; |
| | | this.filterSearchData(); |
| | |
| | | } 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; |
| | | }); |
| | | } |
| | | }); |
| | | }, |
| | |
| | | } else { |
| | | _this.tabTotal = res.total; |
| | | _this.tabData = res.data; |
| | | // debugger |
| | | _this.tabData = _this.tabData.map(function (item) { |
| | | const set =new Set() |
| | | _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.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) => { |
| | |
| | | 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的dialog控制居中的,所以水平拉伸效果是双倍 |
| | | 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 |
| | | } |
| | | } |
| | | }, |
| | | }, |
| | | }; |
| | | </script> |
| | | |
| | | <style lang="scss"> |
| | | .search-for-video-analyze { |
| | | padding: 20px 30px; |
| | | //padding: 20px 30px; |
| | | //出横向滚动条 |
| | | padding: 20px 40px; |
| | | .flex-box { |
| | | display: flex; |
| | | } |
| | |
| | | width: 100px; |
| | | text-align: left; |
| | | background: #f3f3f3; |
| | | color: rgb(133, 133, 133); |
| | | background: #ecf0fc; |
| | | } |
| | | .options-wrap { |
| | | flex: 1; |
| | |
| | | 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; |
| | |
| | | height: 40px; |
| | | line-height: 40px; |
| | | border: none; |
| | | color: #2c3e50; |
| | | font-size: 12px; |
| | | } |
| | | .el-menu--popup { |
| | | display: flex; |
| | |
| | | li.el-menu-item { |
| | | display: inline-block; |
| | | min-width: auto; |
| | | } |
| | | } |
| | | .highlevel-option { |
| | | font-size: 12px; |
| | | color: #2c3e50; |
| | | &:hover { |
| | | color: #6486e7; |
| | | } |
| | | } |
| | | } |
| | |
| | | .data-list { |
| | | margin-top: 20px; |
| | | .header-bar { |
| | | padding-bottom: 5px; |
| | | border-bottom: 1px solid #ddd; |
| | | padding-bottom: 10px; |
| | | .left { |
| | | float: left; |
| | | display: flex; |
| | |
| | | } |
| | | } |
| | | .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; |
| | | } |
| | |
| | | cursor: pointer; |
| | | position: relative; |
| | | text-align: left; |
| | | border: 1px solid #dedede; |
| | | background: #fff; |
| | | border-radius: 5px; |
| | | height: 350px; |
| | | 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%; |
| | |
| | | padding: 10px; |
| | | .base-info { |
| | | > div { |
| | | margin-bottom: 5px; |
| | | margin-bottom: 1px; |
| | | } |
| | | label { |
| | | color: #999; |
| | |
| | | color: #3d68e1; |
| | | .abnormal { |
| | | color: red; |
| | | overflow: hidden; |
| | | text-overflow: ellipsis; |
| | | white-space: nowrap; |
| | | } |
| | | .event-tag{ |
| | | .event-tag { |
| | | margin-top: 10px; |
| | | } |
| | | } |
| | |
| | | } |
| | | .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; |
| | |
| | | } |
| | | } |
| | | .title { |
| | | font-size: 18px; |
| | | font-size: 15px; |
| | | } |
| | | } |
| | | .dialog-event { |
| | | z-index: 2096 !important; |
| | | .el-dialog { |
| | | width: 1000px; |
| | | height: 800px; |
| | | background: #efefef; |
| | | .el-dialog__body { |
| | | padding: 0; |
| | | } |
| | | } |
| | | } |
| | | } |
| | | } |
| | | .window-view { |
| | | width: 100%; |
| | | height: auto; |
| | | // height: 100%; |
| | | // min-height: 684px; |
| | | overflow: auto; |
| | | z-index: 2000; |
| | | } |
| | | </style> |