勾选融合,输出设置固定
This commit is contained in:
parent
aee328fb82
commit
8b6949f087
|
@ -61,10 +61,10 @@
|
||||||
/>
|
/>
|
||||||
<q-tab
|
<q-tab
|
||||||
v-if="
|
v-if="
|
||||||
$store.state.advanced_debug ||
|
$store.state.advanced_debug&&!$store.state.custom_defines.function_fusion ||
|
||||||
/*!$store.state.custom_defines.is_custom_isv */ (!$store.state
|
/*!$store.state.custom_defines.is_custom_isv */ (!$store.state
|
||||||
.custom_defines.function_output_board &&
|
.custom_defines.function_output_board &&
|
||||||
$store.state.isLedPlayer())
|
$store.state.isLedPlayer()) &&!$store.state.custom_defines.function_fusion
|
||||||
"
|
"
|
||||||
name="graphics"
|
name="graphics"
|
||||||
no-caps
|
no-caps
|
||||||
|
@ -76,6 +76,18 @@
|
||||||
"
|
"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
/>
|
/>
|
||||||
|
<q-tab
|
||||||
|
v-if="$store.state.custom_defines.function_fusion &&
|
||||||
|
$store.state.isLedPlayer()"
|
||||||
|
name="graphics"
|
||||||
|
no-caps
|
||||||
|
icon="img:new_icon/graphics_setting.png"
|
||||||
|
:label="
|
||||||
|
$t('output setting')
|
||||||
|
"
|
||||||
|
:disable="loading"
|
||||||
|
/>
|
||||||
|
|
||||||
<q-tab
|
<q-tab
|
||||||
name="timing_task"
|
name="timing_task"
|
||||||
no-caps
|
no-caps
|
||||||
|
@ -96,6 +108,7 @@
|
||||||
:label="$t('output board setting')"
|
:label="$t('output board setting')"
|
||||||
:disable="loading"
|
:disable="loading"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<q-tab
|
<q-tab
|
||||||
name="other"
|
name="other"
|
||||||
no-caps
|
no-caps
|
||||||
|
@ -415,7 +428,7 @@
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item
|
<q-item
|
||||||
v-if="!$store.state.custom_defines.function_output_board"
|
v-if="!$store.state.custom_defines.function_output_board ||$store.state.custom_defines.function_fusion"
|
||||||
>
|
>
|
||||||
<q-item-section avatar class="width_5_2_2"
|
<q-item-section avatar class="width_5_2_2"
|
||||||
>{{ $t("output type") }}:</q-item-section
|
>{{ $t("output type") }}:</q-item-section
|
||||||
|
@ -461,6 +474,7 @@
|
||||||
<q-item
|
<q-item
|
||||||
v-if="
|
v-if="
|
||||||
!$store.state.custom_defines.function_output_board &&
|
!$store.state.custom_defines.function_output_board &&
|
||||||
|
device_resolution_type.toUpperCase() == 'EDID'||$store.state.custom_defines.function_fusion&&
|
||||||
device_resolution_type.toUpperCase() == 'EDID'
|
device_resolution_type.toUpperCase() == 'EDID'
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
@ -479,6 +493,7 @@
|
||||||
<q-item
|
<q-item
|
||||||
v-if="
|
v-if="
|
||||||
!$store.state.custom_defines.function_output_board &&
|
!$store.state.custom_defines.function_output_board &&
|
||||||
|
device_resolution_type.toUpperCase() == 'CVT'||$store.state.custom_defines.function_fusion&&
|
||||||
device_resolution_type.toUpperCase() == 'CVT'
|
device_resolution_type.toUpperCase() == 'CVT'
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
@ -497,6 +512,7 @@
|
||||||
<q-item
|
<q-item
|
||||||
v-if="
|
v-if="
|
||||||
!$store.state.custom_defines.function_output_board &&
|
!$store.state.custom_defines.function_output_board &&
|
||||||
|
device_resolution_type.toUpperCase() == 'CUSTOM'||$store.state.custom_defines.function_fusion&&
|
||||||
device_resolution_type.toUpperCase() == 'CUSTOM'
|
device_resolution_type.toUpperCase() == 'CUSTOM'
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
@ -811,7 +827,7 @@
|
||||||
class="_panel"
|
class="_panel"
|
||||||
v-if="
|
v-if="
|
||||||
$store.state.custom_defines.function_output_board ||
|
$store.state.custom_defines.function_output_board ||
|
||||||
$store.state.advanced_debug
|
$store.state.advanced_debug ||$store.state.custom_defines.function_fusion
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<q-card class="fit">
|
<q-card class="fit">
|
||||||
|
|
Loading…
Reference in New Issue