diff --git a/dist.zip b/dist.zip
index 8655f01e..796fa68a 100644
Binary files a/dist.zip and b/dist.zip differ
diff --git a/public/js/config.js b/public/js/config.js
index 501194d1..9210af6b 100644
--- a/public/js/config.js
+++ b/public/js/config.js
@@ -5,7 +5,7 @@ var COMPANY = ''; //通用
// var COMPANY='longguang'; //龙光地产
// var COMPANY='zhengwu'
// var COMPANY='shenbai'; //沈白高铁
-// COMPANY = 'henan' // 河南
+// COMPANY = 'henan' // 河南春笋
// COMPANY = 'xingxuan'
diff --git a/src/assets/i18n/langs/cn/videoManage.js b/src/assets/i18n/langs/cn/videoManage.js
index 392fe97c..dab811ff 100644
--- a/src/assets/i18n/langs/cn/videoManage.js
+++ b/src/assets/i18n/langs/cn/videoManage.js
@@ -100,6 +100,8 @@ export default {
aiDeployment: 'AI布防',
getOrganId: '获取组织id',
uploadThirdParty: '上传第三方平台',
+ nvrDeviceManage:'nvr设备管理',
+ pluginManage:'设备监测插件管理',
group: '所属分组',
pleaseSelect: '请选择',
isAiDistinguish: '是否具有AI识别功能',
diff --git a/src/assets/js/api/equipmentCenter/cameraList.js b/src/assets/js/api/equipmentCenter/cameraList.js
index 90770eae..efae86b2 100644
--- a/src/assets/js/api/equipmentCenter/cameraList.js
+++ b/src/assets/js/api/equipmentCenter/cameraList.js
@@ -1,7 +1,7 @@
/**
* api接口统一管理
*/
-import {post} from '../../http'
+import {post,get} from '../../http'
export const addVideoItemApi = data => post('xmgl/videoItem/add', data); //添加视频设备列表信息
export const editVideoItemApi = data => post('xmgl/videoItem/edit', data); //编辑视频设备列表信息
@@ -34,4 +34,10 @@ export const editVideoGroupApi = data => post('xmgl/videoGroup/edit', data);
export const getVideoGroupApi = data => post('xmgl/videoGroup/list', data);
// 上传第三方平台
-export const sendVideoInfoApi = data => post('xmgl/videoItem/sendVideoInfo', data);
\ No newline at end of file
+export const sendVideoInfoApi = data => post('xmgl/videoItem/sendVideoInfo', data);
+
+// nvr设备管理
+export const getvideoNvrApi = data => get('/xmgl/videoNvr/selectPage', data); //获取数据
+export const addvideoNvrApi = data => post('/xmgl/videoNvr/addVideoNvr', data); //新增设备
+export const editvideoNvrApi = data => post('/xmgl/videoNvr/updateVideoNvr', data); //编辑设备
+export const delvideoNvrApi = data => get('/xmgl/videoNvr/deleteById', data); //删除设备
diff --git a/src/assets/js/http.js b/src/assets/js/http.js
index 0c074036..59e222fc 100644
--- a/src/assets/js/http.js
+++ b/src/assets/js/http.js
@@ -85,7 +85,8 @@ if (process.env.NODE_ENV == 'development') {
// tag: 河南
if (COMPANY == 'henan') {
- axios.defaults.baseURL = 'http://124.71.178.44:100/'
+ // axios.defaults.baseURL = 'http://124.71.178.44:100/' // 备注 2022 10 12 后端说作废
+ axios.defaults.baseURL = 'http://139.9.66.234:6324/' // 2022 10 12 邱平毅 创建的服务器地址
}
// axios.defaults.baseURL = store.getters.BASEURL //'http://124.71.178.44:100/'axios.defaults.timeout = 600000;
diff --git a/src/views/equipmentCenter/videoManage/cameraList_lc.vue b/src/views/equipmentCenter/videoManage/cameraList_lc.vue
index 123f2a43..61f9e7ca 100644
--- a/src/views/equipmentCenter/videoManage/cameraList_lc.vue
+++ b/src/views/equipmentCenter/videoManage/cameraList_lc.vue
@@ -9,7 +9,16 @@
align="center">
-
+
+
+ {{scope.row.deviceState == 1 ? '在线' : '离线'}}
+
+
+
+
+
diff --git a/src/views/equipmentCenter/videoManage/videoConfig.vue b/src/views/equipmentCenter/videoManage/videoConfig.vue
index 3c9b0bb6..97770cbd 100644
--- a/src/views/equipmentCenter/videoManage/videoConfig.vue
+++ b/src/views/equipmentCenter/videoManage/videoConfig.vue
@@ -32,7 +32,7 @@
class="flex content_data"
v-for="(item,index) in groupList"
:key="index"
- :class="{'active':activeGroupIndex===index }"
+ :class="{'active' : activeGroupIndex === index }"
@click="changeGroupFn(item,index)"
>
{{item.groupName}}
@@ -109,6 +109,21 @@
{{$t('message.videoManage.uploadThirdParty')}}
+
+
+ {{$t('message.videoManage.nvrDeviceManage')}}
+
+
+
+ {{$t('message.videoManage.pluginManage')}}
+
@@ -118,6 +133,104 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 新增
+
+
+
+
+
+
+
+
+ {{scope.row.deviceState == 1 ? '在线' : '离线'}}
+
+
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取 消
+ 确 定
+
+
+
+
+
+
+
+
+