离线注册增加功能选项

This commit is contained in:
fangxiang 2023-01-06 14:11:33 +08:00
parent 089ce906d4
commit b8319dee50
1 changed files with 11 additions and 16 deletions

View File

@ -237,7 +237,7 @@
</div>
</q-item-section>
</q-item>
<q-item v-if="register_type == 'online' && active_type == 'limit'">
<q-item v-if="active_type == 'limit'">
<q-item-section avatar class="header_label">
{{ $t("active time") }}
</q-item-section>
@ -257,7 +257,7 @@
</q-item-section>
</q-item>
<q-item v-if="register_type == 'online'">
<q-item>
<q-item-section avatar class="header_label">
{{ $t("function") }}
</q-item-section>
@ -291,7 +291,7 @@
</q-item-section>
</q-item>
<q-item v-if="register_type == 'online'">
<q-item>
<q-item-section avatar class="header_label"> </q-item-section>
<q-item-section>
<div class="row q-gutter-sm">
@ -307,7 +307,7 @@
</q-item-section>
</q-item>
<q-item v-if="register_type == 'online'">
<q-item>
<q-item-section avatar class="header_label">
{{ $t("language") }}
</q-item-section>
@ -465,18 +465,13 @@ export default defineComponent({
show_dialog.value = false;
}
const function_custom_ISV = ref(
$store.state.custom_defines.is_custom_isv
);
const function_center_control = ref(
$store.state.custom_defines.function_center_control
);
const function_output_board = ref(
$store.state.custom_defines.function_output_board
);
const function_mirroring_output = ref(
$store.state.custom_defines.function_mirroring_output
);
function_custom_ISV.value = $store.state.custom_defines.is_custom_isv;
function_center_control.value =
$store.state.custom_defines.function_center_control;
function_output_board.value =
$store.state.custom_defines.function_output_board;
function_mirroring_output.value =
$store.state.custom_defines.function_mirroring_output;
};
return {