From 1a554224ed5a65f20e7bc397338ca0a88aeeff0f Mon Sep 17 00:00:00 2001 From: chenhaizhao <2291973799@qq.com> Date: Thu, 15 Jan 2026 17:23:44 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Layout/components/AppMain.vue | 8 +++++--- src/Layout/components/Navbar.vue | 20 +++++++++++++++++++- src/Layout/components/Sidebar.vue | 29 +++++++++++++++++++++-------- src/Layout/index.vue | 9 +++++++-- src/router/index.ts | 31 +++++++++++++++++++++++++++---- src/views/device/index.vue | 7 +++++++ src/views/overview/index.vue | 5 +++++ src/views/statistics/index.vue | 7 +++++++ src/views/surgery/index.vue | 7 +++++++ 9 files changed, 105 insertions(+), 18 deletions(-) create mode 100644 src/views/device/index.vue create mode 100644 src/views/overview/index.vue create mode 100644 src/views/statistics/index.vue create mode 100644 src/views/surgery/index.vue diff --git a/src/Layout/components/AppMain.vue b/src/Layout/components/AppMain.vue index fb73b68..839f2c1 100644 --- a/src/Layout/components/AppMain.vue +++ b/src/Layout/components/AppMain.vue @@ -1,8 +1,10 @@ \ No newline at end of file diff --git a/src/Layout/components/Sidebar.vue b/src/Layout/components/Sidebar.vue index 24d9391..d3bc993 100644 --- a/src/Layout/components/Sidebar.vue +++ b/src/Layout/components/Sidebar.vue @@ -1,18 +1,27 @@ + \ No newline at end of file diff --git a/src/Layout/index.vue b/src/Layout/index.vue index a6fb39a..f07c85c 100644 --- a/src/Layout/index.vue +++ b/src/Layout/index.vue @@ -2,12 +2,17 @@ import Sidebar from "./components/Sidebar.vue"; import Navbar from "./components/Navbar.vue"; import Appmain from "./components/AppMain.vue"; +import { ref } from "vue"; +const cut = ref(true) +const btnCut = () => { + cut.value = !cut.value +}