From 4b8b04e1fcf32b6f7d764ac276a0790a90a6327b Mon Sep 17 00:00:00 2001 From: hujiale <13306077+hujiale9527@user.noreply.gitee.com> Date: Wed, 23 Oct 2024 19:55:22 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=89=E4=B8=AD=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../home/components/Output2/index.vue | 40 +++++++++++++------ 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/apps/web-test/src/views/dashboard/home/components/Output2/index.vue b/apps/web-test/src/views/dashboard/home/components/Output2/index.vue index 41e52090..0b82451d 100644 --- a/apps/web-test/src/views/dashboard/home/components/Output2/index.vue +++ b/apps/web-test/src/views/dashboard/home/components/Output2/index.vue @@ -3,23 +3,22 @@
-
+
待办
- -
+
已办
-
+
待阅
-
+
已阅
-
+
关注
@@ -31,10 +30,10 @@
  • - +
  • -
  • - +
  • +
@@ -79,9 +78,9 @@ import { preferences } from '@vben/preferences'; watch(() => preferences.theme.mode, (n: any) => { VxeUI.setTheme(n) -},{ - deep: true, - immediate: true +}, { + deep: true, + immediate: true }) interface RowVO { @@ -165,6 +164,17 @@ watch( state.checkAll = val.length === plainOptions.length; }, ); + +let selectClass = ref('全部') + +let selectedClick = (item: string) => { + selectClass.value = item +} + +let selectTodo = ref(''); +let selectTodoClick = (item: string) => { + selectTodo.value = item +} + \ No newline at end of file