From d203a7d1f582aa8b89868db165c2784f282a5e83 Mon Sep 17 00:00:00 2001 From: fangxiang Date: Tue, 30 Aug 2022 08:22:31 +0800 Subject: [PATCH] =?UTF-8?q?special=5Fvideo=20=E9=9A=90=E8=97=8F=E8=BE=93?= =?UTF-8?q?=E5=87=BA=E6=9D=BF=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SystemSettingDialog.vue | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/components/SystemSettingDialog.vue b/src/components/SystemSettingDialog.vue index 76da32e..aad6aa5 100644 --- a/src/components/SystemSettingDialog.vue +++ b/src/components/SystemSettingDialog.vue @@ -1160,13 +1160,19 @@ export default defineComponent({ ($store.state.device_attribute & Protocol.EDeviceAttribute.OutputBoard) != 0 ); + if ($store.state.isSpecialVideo()) { + function_output_board_attribute.value = false; + } watch( () => $store.state.device_attribute, (value) => { - function_output_board_attribute.value = - (value & Protocol.EDeviceAttribute.OutputBoard) != 0; - + if ($store.state.isSpecialVideo()) { + function_output_board_attribute.value = false; + } else { + function_output_board_attribute.value = + (value & Protocol.EDeviceAttribute.OutputBoard) != 0; + } function_mirroring_output.value = ($store.state.device_attribute & Protocol.EDeviceAttribute.MirroringOutput) !=