diff --git a/src/router/index.js b/src/router/index.js
index 090a2ca..21e37f3 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -48,6 +48,15 @@ const routes = [{
},
component: () => import('@/views/historyMonitoring/index')
},
+ {
+ path: 'alarmVideos',
+ name: 'alarmVideos',
+ meta: {
+ icon: 'alert',
+ name: '告警视频'
+ },
+ component: () => import('@/views/alarmVideos/index')
+ },
//设置二级菜单
// {
// path: 'checkManage',
diff --git a/src/views/alarmVideos/index.vue b/src/views/alarmVideos/index.vue
new file mode 100644
index 0000000..d96591a
--- /dev/null
+++ b/src/views/alarmVideos/index.vue
@@ -0,0 +1,138 @@
+
+
+
+
+
+
+
diff --git a/src/views/historyMonitoring/index.vue b/src/views/historyMonitoring/index.vue
index 1196a19..b9262cd 100644
--- a/src/views/historyMonitoring/index.vue
+++ b/src/views/historyMonitoring/index.vue
@@ -10,7 +10,9 @@
-
+
+
+
@@ -123,17 +125,17 @@ export default {
this.request();
},
request() {
- this.$api.httpApi.queryList({
- data: {
- pageNum:this.pageNum,
- pageSize:this.pageSize,
- ...this.queryParam
- }
- }).then(res => {
- console.log(res)
- }).catch(err => {
-
- });
+ // this.$api.httpApi.queryList({
+ // data: {
+ // pageNum:this.pageNum,
+ // pageSize:this.pageSize,
+ // ...this.queryParam
+ // }
+ // }).then(res => {
+ // console.log(res)
+ // }).catch(err => {
+ //
+ // });
},
onTimeChange(date, dateString) {
console.log(date)
@@ -141,6 +143,11 @@ export default {
this.queryParam.start_time = date[0].format('X')
this.queryParam.end_time = date[1].format('X')
},
+ handleReset() {
+ this.queryParam.start_time=""
+ this.queryParam.end_time=""
+ this.time=""
+ },
},
};