index.vue
9.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
<template>
<el-row class="home-box" :gutter="10">
<el-col :span="3" class="ht100 tree-left">
<div class="tree-box">
<div class="tree-title">视频设备</div>
<div class></div>
<div class>
<el-input
class="search-input"
prefix-icon="el-icon-search"
placeholder="请输入内容"
v-model="searchInfo"
></el-input>
</div>
<ul class="tasklist">
<li
v-for="(item, index) in taskdata"
:key="index"
@click="selecttask(item, index)"
v-if="item.status == 'Running'"
>
<span
:class="{
'task-lsit': true,
runningtask: item.status == 'Running',
stoptask: item.status != 'Running'
}"
>
<!-- <i
:class="{
'el-icon-fanxin-yiyunhangrenwuliebiao':
item.status == 'Running',
' el-icon-fanxin-task-pause': item.status != 'Running',
icon: true
}"
></i>-->
<!-- <span class="el-icon-caret-bottom" style="display:inline-block"></span> -->
<span class="task-title">{{ item.task_name }}</span>
</span>
<ol v-if="index == subindex">
<li
@click.stop="subTasksClick(subTask)"
class="subtask"
:title="subTask.subtask_name"
v-for="subTask in subTasks"
:key="subTask.subtask_id"
v-show="subTask.enableStatus != 1"
:class="[
{ subtaskActive: subTask.subtask_id == currentSubtaskId },
{ disabledColor: subTask.enableStatus == 5 }
]"
:data-subtask="subTask.subtask_id"
:id="subTask.vchan.vdev_unid + ',' + subTask.vchan.vchan_refid"
>
<!-- <i class="el-icon-fanxin-yuandian icon"></i> -->
{{ subTask.subtask_name ? subTask.subtask_name : subTask.name }}
</li>
</ol>
</li>
</ul>
</div>
</el-col>
<el-col :span="15" class="ht100">
<div class="video-box">
<div class="play-box">
<videoplay ref="videoplay" :playurl="playurl" v-if="!ischrome"></videoplay>
<flvvideo ref="flvideo" v-if="ischrome"></flvvideo>
</div>
<div class>
<setting
:taskid="taskID"
ref="setting"
:subtaskid="currentSubtaskId"
:subtaskdata="subtaskdata"
:playurl="playurl"
:vchan="vchandata"
></setting>
</div>
</div>
</el-col>
<div>
<InfoDialog ref="displayInfo"></InfoDialog>
</div>
<el-col :span="6" class="ht100">
<div class="show-box">
<eventtab ref="event"></eventtab>
</div>
</el-col>
</el-row>
</template>
<script>
import videoplay from "../public/videoPlay";
import flvvideo from "../public/flvvideo"
import InfoDialog from "../public/infodialog";
import setting from "./setting";
import eventtab from "./eventTab";
export default {
components: {
videoplay,
InfoDialog,
setting,
flvvideo,
eventtab
},
data() {
return {
searchInfo: "",
taskdata: [],
subtaskdata: "",
subTasks: [],
vchandata: {},
subindex: -1,
playurl: "",
taskID: "",
streamclock:null,
currentSubtaskId: "",
defaultProps: {
children: "children",
label: "label"
},
timer: null,
searchstate: null
};
},
methods: {
selecttask(data, index) {
this.subTasks = [];
this.subindex = index;
this.$api.task.getSubTask(data.task_id).then(res => {
this.subTasks = res.list_data;
this.taskID = data.task_id;
});
},
subTasksClick(vdata) {
//删除中的任务不能点击
if (vdata.enableStatus == 5) {
return;
}
this.$store.commit("setocxstate", 1);
this.currentSubtaskId = vdata.subtask_id;
this.subtaskdata = vdata;
this.$refs.setting.TaskParams(vdata.subtask_id);
if (vdata.running_status != "Running") {
this.$message({
message: "该任务没有运行,无法获取分析视频和抓拍信息",
type: "error"
});
return;
}
this.pushSteam(vdata);
this.$refs.event.dataInit(this.currentSubtaskId, vdata.task_type);
},
getTask(data) {
let that = this;
this.$api.task
.getTask({
task_name: this.searchInfo
})
.then(res => {
that.taskdata = res.list_data;
console.log(res);
});
},
//发送推流请求
pushSteam(vdata) {
this.steam(vdata).then(m => {
if (m.ecode) {
this.$message({
message: "发送推流请求失败:" + m.enote,
type: "error"
});
} else {
this.vchandata = vdata.vchan;
clearInterval(this.streamclock)
this.streamclock = null;
this.getPlayUrl();
}
})
},
steam(vdata){
return new Promise((resolve, reject) =>{
let data = {
send_stream: true,
task_id: this.currentSubtaskId,
is_analyse: true
};
this.$api.task
.getStream(this.dev_unid, vdata.vchan.vchan_refid, data)
.then(m => {
resolve(m);
});
})
},
getPlayUrl: function() {
if(this.ischrome) {
let ip = this.$api.flvIP;
let url = `${window.config.https?'https':'http'}://${ip}:${window.config.https?'20070':'8080'}/live/${this.currentSubtaskId}.flv`
console.log("FLV播放地址:", url)
debugger
this.$refs.flvideo.startFunc(url);
this.streamclock = setInterval(()=> {
this.steam(this.subtaskdata)
},9000)
}
if(this.subtaskdata.task_algo_type == '12') {
console.log(this.subtaskdata)
this.playurl = {rtsp_url:this.subtaskdata.vchan.url};
console.log("bkurl",this.playurl)
setTimeout(() => {
this.$refs.videoplay.videoPlay();
}, 2000);
return false;
}
this.$api.task.getPlayUrl(this.currentSubtaskId).then(res => {
this.playurl = res;
if (this.playurl.rtsp_url) {
this.$message({
message: "获取播放地址成功,请耐心等待视频加载",
type: "success"
});
setTimeout(() => {
!this.ischrome?this.$refs.videoplay.videoPlay():null;
}, 2000);
console.info("视频播放地址:", this.playurl.rtsp_url);
} else {
this.$message({
message: "获取rtsp播放地址失败!请重试!",
type: "error"
});
}
});
},
getVchansIsSending() {
this.axios.get(this.API.task.getstream()).then(res => {});
},
debounce(fn, wait) {
clearTimeout(this.timer);
this.timer = setTimeout(() => {
fn;
}, wait);
}
},
watch: {
searchInfo(val) {
this.debounce(this.getTask(), 800);
}
},
created() {
this.getTask();
this.ischrome = this.checkchrome();
},
mounted() {
},
beforeDestroy(){
clearInterval(this.streamclock);
this.streamclock = null;
}
};
</script>
<style lang="scss" scoped>
.home-box {
height: calc(100% - 60px);
width: 100%;
margin: 2px auto;
@include font-colr(whate_colr);
overflow: hidden;
min-height: 700px;
padding: 10px;
}
.tree-box {
border-radius: 2px;
height: calc(100% - 0px);
overflow: hidden;
@include background_color(treeboxbg);
}
.tree-title {
height: 30px;
line-height: 30px;
padding-left: 30px;
font-size: 14px;
@include background_color(taskshipintitlebg);
}
.tree-box:hover {
overflow-y: auto;
}
.tree-left {
}
.video-box,
.show-box {
height: calc(100% - 0px);
overflow: hidden;
}
.show-box {
overflow: hidden;
padding: 10px;
@include background_color(treeboxbg);
}
.show-box:hover {
overflow-y: auto;
}
.play-box {
height: 70%;
background: black;
margin-bottom: 10px;
}
.ht100 {
height: 100%;
}
.search-input {
border-radius: 1px;
width: 90%;
margin: 10px;
.search-btn {
background: rgba(0, 0, 0, 0.3);
border-radius: 0;
text-align: center;
}
}
.vido-ifram {
height: 100%;
width: 100%;
border: 0;
}
.task-lsit {
display: inline-block;
cursor: pointer;
font-size: 14px;
color: rgba(102, 102, 102, 1);
margin-top: 15px;
.icon {
padding-left: 10px;
}
}
.runningtask {
// color rgba(1, 206, 184, 0.56);
@include font-colr(runtask_color);
}
.stoptask {
color: rgba(102, 102, 102, 1);
.icon {
font-size: 22px;
margin-left: -2px;
}
}
.task-title {
padding-left: 10px;
width: 100%;
display: inline-block;
overflow: hidden;
}
.tasklist {
padding-left: 10px;
width: 100%;
overflow: hidden;
}
.subtask {
margin-bottom: 5px;
width: 15vw;
height: 30px;
margin-left: 15px;
line-height: 30px;
font-size: 13px;
padding-left: 8px;
@include font-colr(sbtask_color);
// width calc(100% - 30px);
overflow: hidden;
cursor: pointer;
.icon {
font-size: 10px;
padding-right: 2px;
transform: scale(0.6);
color: #01ce82;
}
}
.disabledColor {
color: #c0c0c0 !important;
}
.subtaskActive {
position: relative;
color: #333;
padding-right:10px;
}
.subtaskActive::before {
position: absolute;
content: "";
top: 11px;
left: 0px;
display: inline-block;
height: 8px;
width: 8px;
background: rgba(42, 225, 47, 0.74);
border-radius: 10px;
}
</style>