离线注册增加功能选项
This commit is contained in:
parent
089ce906d4
commit
b8319dee50
|
@ -237,7 +237,7 @@
|
||||||
</div>
|
</div>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</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">
|
<q-item-section avatar class="header_label">
|
||||||
{{ $t("active time") }}
|
{{ $t("active time") }}
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
@ -257,7 +257,7 @@
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
<q-item v-if="register_type == 'online'">
|
<q-item>
|
||||||
<q-item-section avatar class="header_label">
|
<q-item-section avatar class="header_label">
|
||||||
{{ $t("function") }}
|
{{ $t("function") }}
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
@ -291,7 +291,7 @@
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
<q-item v-if="register_type == 'online'">
|
<q-item>
|
||||||
<q-item-section avatar class="header_label"> </q-item-section>
|
<q-item-section avatar class="header_label"> </q-item-section>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<div class="row q-gutter-sm">
|
<div class="row q-gutter-sm">
|
||||||
|
@ -307,7 +307,7 @@
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
<q-item v-if="register_type == 'online'">
|
<q-item>
|
||||||
<q-item-section avatar class="header_label">
|
<q-item-section avatar class="header_label">
|
||||||
{{ $t("language") }}
|
{{ $t("language") }}
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
@ -465,18 +465,13 @@ export default defineComponent({
|
||||||
show_dialog.value = false;
|
show_dialog.value = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const function_custom_ISV = ref(
|
function_custom_ISV.value = $store.state.custom_defines.is_custom_isv;
|
||||||
$store.state.custom_defines.is_custom_isv
|
function_center_control.value =
|
||||||
);
|
$store.state.custom_defines.function_center_control;
|
||||||
const function_center_control = ref(
|
function_output_board.value =
|
||||||
$store.state.custom_defines.function_center_control
|
$store.state.custom_defines.function_output_board;
|
||||||
);
|
function_mirroring_output.value =
|
||||||
const function_output_board = ref(
|
$store.state.custom_defines.function_mirroring_output;
|
||||||
$store.state.custom_defines.function_output_board
|
|
||||||
);
|
|
||||||
const function_mirroring_output = ref(
|
|
||||||
$store.state.custom_defines.function_mirroring_output
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in New Issue