From 9eef3e8bc4dcba68d159607c081cf85c17231186 Mon Sep 17 00:00:00 2001 From: jacky Date: Tue, 9 Apr 2024 13:50:02 +0800 Subject: [PATCH] init --- src/view/dashboard/home.vue | 63 ++++++++++++++++++++----------------- 1 file changed, 35 insertions(+), 28 deletions(-) diff --git a/src/view/dashboard/home.vue b/src/view/dashboard/home.vue index 36d49b4..e0611f6 100644 --- a/src/view/dashboard/home.vue +++ b/src/view/dashboard/home.vue @@ -53,6 +53,41 @@ defineOptions({ const weatherInfo = useWeatherInfo() const toolCards = ref([ + { + label: '文章管理', + icon: 'edit', + name: 'article', + color: '#69c0ff', + bg: 'rgba(105, 192, 255,.3)' + }, + { + label: '企业家管理', + icon: 'coordinate', + name: 'entrepreneur', + color: '#b37feb', + bg: 'rgba(179, 127, 235,.3)' + }, + { + label: '院士管理', + icon: 'star', + name: 'academician', + color: '#ffd666', + bg: 'rgba(255, 214, 102,.3)' + }, + { + label: '广告管理', + icon: 'camera', + name: 'adcontent', + color: '#ff85c0', + bg: 'rgba(255, 133, 192,.3)' + }, + { + label: '活动管理', + icon: 'aim', + name: 'activity', + color: '#ff85c0', + bg: 'rgba(255, 133, 192,.3)' + }, { label: '用户管理', icon: 'monitor', @@ -60,34 +95,6 @@ const toolCards = ref([ color: '#ff9c6e', bg: 'rgba(255, 156, 110,.3)' }, - { - label: '角色管理', - icon: 'setting', - name: 'authority', - color: '#69c0ff', - bg: 'rgba(105, 192, 255,.3)' - }, - { - label: '菜单管理', - icon: 'menu', - name: 'menu', - color: '#b37feb', - bg: 'rgba(179, 127, 235,.3)' - }, - { - label: '代码生成器', - icon: 'cpu', - name: 'autoCode', - color: '#ffd666', - bg: 'rgba(255, 214, 102,.3)' - }, - { - label: '表单生成器', - icon: 'document-checked', - name: 'formCreate', - color: '#ff85c0', - bg: 'rgba(255, 133, 192,.3)' - } ]) const router = useRouter()