From a43188c3a10050a9b062fe15d3bd2c30887be672 Mon Sep 17 00:00:00 2001 From: miao <2514145421@qq.com> Date: Tue, 13 Dec 2022 14:42:25 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=AD=94=E5=A2=99=E5=AF=B9?= =?UTF-8?q?=E8=AF=9D=E6=A1=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ControlPanelDialog.vue | 565 ++++++++++++++++++++++++++ src/i18n/en-US/index.ts | 5 + src/i18n/zh-CN/index.ts | 5 + src/pages/TopToolBar.vue | 28 ++ 4 files changed, 603 insertions(+) create mode 100644 src/components/ControlPanelDialog.vue diff --git a/src/components/ControlPanelDialog.vue b/src/components/ControlPanelDialog.vue new file mode 100644 index 0000000..3579af3 --- /dev/null +++ b/src/components/ControlPanelDialog.vue @@ -0,0 +1,565 @@ + + + + + diff --git a/src/i18n/en-US/index.ts b/src/i18n/en-US/index.ts index 8d9e02c..1f0690d 100644 --- a/src/i18n/en-US/index.ts +++ b/src/i18n/en-US/index.ts @@ -398,4 +398,9 @@ export default { "server commit hash": "Server Commit Hash", "edit user or password": "Edit User Or Password", "old password error": "Old Password Error", + "magic wall":"Magic Wall", + "angle":"Angle", + "topology diagram":"Topology Diagram", + "physical central location":"Central Location", + "monitors list":"Monitors List", }; diff --git a/src/i18n/zh-CN/index.ts b/src/i18n/zh-CN/index.ts index c090c28..2a607d5 100644 --- a/src/i18n/zh-CN/index.ts +++ b/src/i18n/zh-CN/index.ts @@ -668,4 +668,9 @@ export default { "new password": "新密码", "edit user or password": "修改用户名和密码", "old password error": "旧密码不匹配", + "magic wall":"魔墙", + "angle":"角度", + "topology diagram":"拓扑图", + "physical central location":"物理中心位置", + "monitors list":"显示器", }; diff --git a/src/pages/TopToolBar.vue b/src/pages/TopToolBar.vue index a761bb4..9399e19 100644 --- a/src/pages/TopToolBar.vue +++ b/src/pages/TopToolBar.vue @@ -310,6 +310,27 @@ + + + + + + + + + + {{ $t("magic wall") }} + + + + + + + @@ -496,6 +518,9 @@ import { useStore } from "src/store"; import GridSettingDialog from "src/components/GridSettingDialog.vue"; import SpecialVideoGridSettingDialog from "src/components/SpecialVideoGridSettingDialog.vue"; + +import ControlPanelDialog from "src/components/ControlPanelDialog.vue"; + import BackgroundImageDialog from "src/components/BackgroundImageDialog.vue"; import RecoveryDatabaseDialog from "src/components/RecoveryDatabaseDialog.vue"; import UpgradeDialog from "src/components/UpgradeDialog.vue"; @@ -527,6 +552,9 @@ export default defineComponent({ components: { GridSettingDialog, SpecialVideoGridSettingDialog, + + ControlPanelDialog, + BackgroundImageDialog, RecoveryDatabaseDialog, UpgradeDialog,