@@ -14,6 +21,7 @@ defineProps<{
:key="item.id"
class="app-sub-menu-list-item"
:class="[activeIndex === index && 'app-sub-menu-list-item-active']"
+ @click="handleClick(index, item)"
>
{{ item.title }}
@@ -30,6 +38,8 @@ defineProps<{
&-item {
padding: 10px 10px 10px 20px;
border-radius: 10px 0 0 10px;
+ transition: all 0.2s;
+ cursor: pointer;
.title {
font-weight: bold;
font-size: 14px;
diff --git a/src/components/AppSubMenuTitle/index.vue b/src/components/AppSubMenuTitle/index.vue
index 77dbc8d..f33af69 100644
--- a/src/components/AppSubMenuTitle/index.vue
+++ b/src/components/AppSubMenuTitle/index.vue
@@ -1,3 +1,4 @@
+
+
+
+
+
+ {{ item.label }}
+
+
+
+
+
+
diff --git a/src/store/moules/userStore/index.ts b/src/store/moules/userStore/index.ts
index ba8ecf9..86d0374 100644
--- a/src/store/moules/userStore/index.ts
+++ b/src/store/moules/userStore/index.ts
@@ -1,10 +1,3 @@
-/*
- * @Description: 主题状态控制
- * @Author: yeke
- * @Date: 2023-06-28 11:16:32
- * @LastEditors: lipenghui
- * @LastEditTime: 2024-01-17 13:54:13
- */
import { defineStore } from 'pinia'
import type { UserInfoType, UserStateType } from './index.d'
import { router } from '@/router'
diff --git a/src/views/conversation/index.vue b/src/views/conversation/index.vue
index d8db631..fd1fc0e 100644
--- a/src/views/conversation/index.vue
+++ b/src/views/conversation/index.vue
@@ -1,8 +1,10 @@
-
- 我是子菜单
+
+
+
+
+
我是内容区