修复ISV定制工具栏开关机按钮事件错误的BUG
This commit is contained in:
parent
92b6698665
commit
799c9cb82a
|
@ -695,24 +695,6 @@ export default class ClientConnection {
|
|||
}
|
||||
|
||||
public setWallRowCol(wall_row: number, wall_col: number) {
|
||||
/*this.ws?.send(
|
||||
JSON.stringify(
|
||||
new Protocol.SetApplicationConfigRequestEntity(
|
||||
0,
|
||||
"wall_row",
|
||||
wall_row.toString()
|
||||
)
|
||||
)
|
||||
);
|
||||
this.ws?.send(
|
||||
JSON.stringify(
|
||||
new Protocol.SetApplicationConfigRequestEntity(
|
||||
0,
|
||||
"wall_col",
|
||||
wall_col.toString()
|
||||
)
|
||||
)
|
||||
);*/
|
||||
this.ws?.send(
|
||||
JSON.stringify(
|
||||
new Protocol.SetApplicationConfigRequestEntity(
|
||||
|
|
|
@ -187,7 +187,6 @@
|
|||
|
||||
<q-space />
|
||||
<q-btn-dropdown
|
||||
:disable="!$store.state.power_state"
|
||||
no-caps
|
||||
stretch
|
||||
flat
|
||||
|
@ -198,14 +197,9 @@
|
|||
<q-list style="background-color: #3e9acd" class="shadow-2 text-white">
|
||||
<q-item
|
||||
clickable
|
||||
:disable="!$store.state.power_state"
|
||||
v-close-popup
|
||||
@click="
|
||||
($store.state.isSpecialVideo()
|
||||
? $refs.special_video_grid_setting_dialog
|
||||
: $refs.grid_setting_dialog
|
||||
)?.showDialog()
|
||||
"
|
||||
:disable="power_flag"
|
||||
@click="powerOff"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<!-- <q-icon name="image" /> -->
|
||||
|
@ -217,9 +211,9 @@
|
|||
</q-item>
|
||||
<q-item
|
||||
clickable
|
||||
:disable="!$store.state.power_state"
|
||||
:disable="power_flag"
|
||||
v-close-popup
|
||||
@click="$refs.file_manage_dialog.showDialogAsync()"
|
||||
@click="powerOn"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<!-- <q-icon name="image" /> -->
|
||||
|
@ -233,6 +227,7 @@
|
|||
clickable
|
||||
v-close-popup
|
||||
@click="$refs.background_image_dialog.showDialog()"
|
||||
:disable="!$store.state.power_state"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<!-- <q-icon name="image" /> -->
|
||||
|
@ -246,6 +241,7 @@
|
|||
clickable
|
||||
v-close-popup
|
||||
@click="$refs.recovery_database_dialog.showDialog()"
|
||||
:disable="!$store.state.power_state"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<!-- <q-icon name="backup" /> -->
|
||||
|
@ -255,7 +251,12 @@
|
|||
{{ $t("database import") }}
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item clickable v-close-popup @click="backupDB">
|
||||
<q-item
|
||||
clickable
|
||||
v-close-popup
|
||||
@click="backupDB"
|
||||
:disable="!$store.state.power_state"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<!-- <q-icon name="cloud_download" /> -->
|
||||
<q-icon name="img:new_icon/database_recovery.png" />
|
||||
|
@ -268,6 +269,7 @@
|
|||
clickable
|
||||
v-close-popup
|
||||
@click="$refs.upgrade_dialog.showDialog()"
|
||||
:disable="!$store.state.power_state"
|
||||
>
|
||||
<q-item-section avatar>
|
||||
<!-- <q-icon name="system_update" /> -->
|
||||
|
|
Loading…
Reference in New Issue