index.vue
7.79 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
<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"
:class="[
{ subtaskActive: subTask.subtask_id == currentSubtaskId },
{ disabledColor: subTask.running_status != 'Running' }
]"
: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"></videoplay>
</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 InfoDialog from "../public/infodialog";
import setting from "./setting";
import eventtab from "./eventTab";
export default {
components: {
videoplay,
InfoDialog,
setting,
eventtab
},
data() {
return {
searchInfo: "",
taskdata: [],
subtaskdata: "",
subTasks: [],
vchandata:{},
subindex: -1,
playurl: "",
taskID: "",
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) {
this.$store.commit("setocxstate", 1);
this.currentSubtaskId = vdata.subtask_id;
this.subtaskdata = vdata;
console.log('vdata',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) {
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 => {
if (m.ecode) {
this.$message({
message: "发送推流请求失败:" + m.enote,
type: "error"
});
} else {
this.vchandata = vdata.vchan;
setTimeout(() => {
this.getPlayUrl();
}, 2000);
}
});
},
getPlayUrl: function() {
this.$api.task.getPlayUrl(this.currentSubtaskId).then(res => {
this.playurl = res;
if (this.playurl.rtsp_url) {
this.$message({
message: "获取播放地址成功,请耐心等待视频加载",
type: "success"
});
setTimeout(() => {
this.$refs.videoplay.videoPlay();
}, 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();
}
};
</script>
<style lang="stylus" scoped>
.home-box{
height calc(100% - 60px)
width 100%
margin 2px auto
color #fff
overflow hidden
min-height 700px
padding 10px
}
.tree-box{
border-radius 2px
height calc(100% - 0px)
overflow hidden
background #fff
}
.tree-title{
height 30px
line-height 30px
padding-left 30px
font-size 14px
background #3BB7FF
}
.tree-box:hover{
overflow-y auto
}
.tree-left{
}
.video-box,.show-box{
height calc(100% - 0px)
overflow hidden
background #fff
}
.show-box {
overflow hidden
padding 10px
}
.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,.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);
color rgba(102, 102, 102, 1)
}
.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
padding-left 30px
line-height 30px
font-size 13px
color #666666
// width calc(100% - 30px);
overflow hidden
cursor pointer
.icon{
font-size 10px
padding-right 2px
transform scale(.6)
color #01ce82
}
}
.subtaskActive {
// background #0c3b87
}
</style>