special_video 隐藏输出板设置
This commit is contained in:
parent
6943d78c97
commit
d203a7d1f5
|
@ -1160,13 +1160,19 @@ export default defineComponent({
|
||||||
($store.state.device_attribute & Protocol.EDeviceAttribute.OutputBoard) !=
|
($store.state.device_attribute & Protocol.EDeviceAttribute.OutputBoard) !=
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
if ($store.state.isSpecialVideo()) {
|
||||||
|
function_output_board_attribute.value = false;
|
||||||
|
}
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => $store.state.device_attribute,
|
() => $store.state.device_attribute,
|
||||||
(value) => {
|
(value) => {
|
||||||
function_output_board_attribute.value =
|
if ($store.state.isSpecialVideo()) {
|
||||||
(value & Protocol.EDeviceAttribute.OutputBoard) != 0;
|
function_output_board_attribute.value = false;
|
||||||
|
} else {
|
||||||
|
function_output_board_attribute.value =
|
||||||
|
(value & Protocol.EDeviceAttribute.OutputBoard) != 0;
|
||||||
|
}
|
||||||
function_mirroring_output.value =
|
function_mirroring_output.value =
|
||||||
($store.state.device_attribute &
|
($store.state.device_attribute &
|
||||||
Protocol.EDeviceAttribute.MirroringOutput) !=
|
Protocol.EDeviceAttribute.MirroringOutput) !=
|
||||||
|
|
Loading…
Reference in New Issue