From 5a142cb9cdf9290f408e55dbe92f456e954f72d5 Mon Sep 17 00:00:00 2001
From: zq <136432190602163.com>
Date: Fri, 20 Jun 2025 18:41:26 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E6=9C=AC=E6=A1=86?=
=?UTF-8?q?=E3=80=81=E5=85=AC=E5=85=B1=E6=A0=B7=E5=BC=8F=E3=80=81=E4=BA=A4?=
=?UTF-8?q?=E4=BA=92?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/App.vue | 28 +-
src/components/GuipTextarea.vue | 15 +-
src/components/HoverButton.vue | 13 +-
src/components/SetLeftMenu.vue | 287 +-
src/components/SliderMenu.vue | 4 +-
src/router/index.js | 2 +-
src/store/index.js | 177 +-
src/style/theme/index.css | 7076 ++++++++++++++-------------------------
src/views/DoctorInformation.vue | 107 +-
src/views/HomeView.vue | 186 +-
src/views/HosInformation.vue | 66 +-
11 files changed, 3003 insertions(+), 4958 deletions(-)
diff --git a/src/App.vue b/src/App.vue
index e751a54..1c31f16 100755
--- a/src/App.vue
+++ b/src/App.vue
@@ -8,7 +8,7 @@
-
+
@@ -34,43 +34,21 @@ import Header from './components/Header.vue';
import Breadcrumb from './components/Breadcrumb.vue';
// import loadingAnimation from '@/assets/loadingAni.json' // 导入JSON文件
import GlobalLoading from '@/components/GlobalLoading1.vue'
-// import ContentWithLoading from '@/components/ContentWithLoading'
export default {
data() {
return {
isCollapse: true,
- // menuData: [
- // {
- // index: '1',
- // title: '父级菜单1',
- // icon: 'el-icon-location',
- // children: [
- // { index: '1-1', title: '子级菜单1-1', path: '/' },
- // { index: '1-2', title: 'ui页面', path: '/ui' }
- // ]
- // },
- // {
- // index: '2',
- // title: '父级菜单2',
- // icon: 'el-icon-menu',
- // children: [
- // { index: '2-1', title: '子级菜单2-1', path: '/about' },
- // { index: '2-2', title: '加盟耶main', path: '/franchise' }
- // ]
- // }
- // ]
};
},
components: {
GlobalLoading,
- // ContentWithLoading,
SliderMenu,
// Footer,
Header,
Breadcrumb
},
computed: {
- ...mapState(['menuData','showSidebar', 'showFooter', 'showHeader']) // 从Vuex映射showSidebar状态到组件的计算属性中
+ ...mapState(['hosMenuData','slidermenu','customize','showSidebar', 'showFooter', 'showHeader']) // 从Vuex映射showSidebar状态到组件的计算属性中
},
mounted() {
window.addEventListener('beforeunload', this.clearStorage);
@@ -94,7 +72,6 @@ export default {