diff --git a/web_src/src/components/JTChannelList.vue b/web_src/src/components/JTChannelList.vue index d4a940f97..f06fa71a0 100755 --- a/web_src/src/components/JTChannelList.vue +++ b/web_src/src/components/JTChannelList.vue @@ -74,6 +74,8 @@ 设备录像 云端录像 + + 立即拍摄 @@ -225,6 +227,8 @@ export default { this.queryRecords(itemData) }else if (command === "cloudRecords") { this.queryCloudRecords(itemData) + }else { + this.$message.info("尚不支持"); } }, queryRecords: function (itemData) { diff --git a/web_src/src/components/JTDeviceList.vue b/web_src/src/components/JTDeviceList.vue index 300d1ce8e..dfe3429cc 100755 --- a/web_src/src/components/JTDeviceList.vue +++ b/web_src/src/components/JTDeviceList.vue @@ -52,7 +52,7 @@ - + @@ -181,7 +217,16 @@ export default { setTimeout(this.getList, 200) }) - } + }, + moreClick: function (command, itemData) { + if (command === "params") { + this.queryRecords(itemData) + }else if (command === "connection") { + this.queryCloudRecords(itemData) + }else { + this.$message.info("尚不支持"); + } + }, }