Русифицировать README и интерфейс HY2XS admin

This commit is contained in:
2026-04-25 23:51:21 +05:00
parent 84a4e94567
commit 2b4a45ad23
167 changed files with 632 additions and 699 deletions
+10 -8
View File
@@ -11,11 +11,11 @@ import { useSettingsStore } from "@/store/modules/settings";
const { width } = useWindowSize();
/**
* 响应式布局容器固定宽度
* Фиксированная ширина контейнера адаптивного layout
*
* 大屏>=1200px
* 中屏>=992px
* 小屏>=768px
* Большой экран>=1200px
* Средний экран>=992px
* Малый экран>=768px
*/
const WIDTH = 992;
@@ -41,7 +41,7 @@ watchEffect(() => {
appStore.toggleDevice("desktop");
if (width.value >= 1200) {
//大屏
//Большой экран
appStore.openSideBar(true);
} else {
appStore.closeSideBar(true);
@@ -56,7 +56,7 @@ function handleOutsideClick() {
<template>
<div :class="classObj" class="app-wrapper">
<!-- 手机设备侧边栏打开遮罩层 -->
<!-- Overlay открытого бокового меню на мобильных устройствах -->
<div
v-if="classObj.mobile && classObj.openSidebar"
class="drawer-bg"
@@ -71,10 +71,10 @@ function handleOutsideClick() {
<tags-view v-if="showTagsView" />
</div>
<!--主页面-->
<!--Основная страница-->
<app-main />
<!-- 设置面板 -->
<!-- Панель настроек -->
<RightPanel v-if="showSettings">
<settings />
</RightPanel>
@@ -127,3 +127,5 @@ function handleOutsideClick() {
opacity: 0.3;
}
</style>