diff --git a/src/views/management/monitoringEquipment/photographicDevice/components/imageCapture.vue b/src/views/management/monitoringEquipment/photographicDevice/components/imageCapture.vue
index ae9f7a5..c71f23d 100644
--- a/src/views/management/monitoringEquipment/photographicDevice/components/imageCapture.vue
+++ b/src/views/management/monitoringEquipment/photographicDevice/components/imageCapture.vue
@@ -13,9 +13,19 @@
+ >
+ {{
+ item.alias !== null && item.alias !== ""
+ ? item.alias
+ : item.channelname
+ }}
+
@@ -95,9 +105,19 @@
+ >
+ {{
+ item.alias !== null && item.alias !== ""
+ ? item.alias
+ : item.channelname
+ }}
+
@@ -246,7 +266,7 @@ export default {
this.searchloading = true;
getPhotoParamApi({
channelId: this.selaccess,
- cmdId: this.selcmdId,
+ termId: this.seltermid,
})
.then((res) => {
if (res.code == 200) {
diff --git a/src/views/management/monitoringEquipment/photographicDevice/components/videoCapture.vue b/src/views/management/monitoringEquipment/photographicDevice/components/videoCapture.vue
index 8d37ce8..9424bab 100644
--- a/src/views/management/monitoringEquipment/photographicDevice/components/videoCapture.vue
+++ b/src/views/management/monitoringEquipment/photographicDevice/components/videoCapture.vue
@@ -13,9 +13,19 @@
+ >
+ {{
+ item.alias !== null && item.alias !== ""
+ ? item.alias
+ : item.channelname
+ }}
+
@@ -78,9 +88,19 @@
+ >
+ {{
+ item.alias !== null && item.alias !== ""
+ ? item.alias
+ : item.channelname
+ }}
+
@@ -142,7 +162,7 @@ export default {
selaccess: "", //选中的通道
capturenr: {}, //查询后的内容
setForm: {
- preset: 255
+ preset: 255,
}, //设置参数
rules: {
channelId: [{ required: true, message: "请选择通道", trigger: "blur" }],
@@ -169,7 +189,7 @@ export default {
//获取设备通道
getSingleAccess(val) {
this.setForm = {
- preset: 255
+ preset: 255,
};
console.log(val);
this.seltermid = val.id;