This commit is contained in:
jacky 2024-04-09 13:50:02 +08:00
parent adbacefc1c
commit 9eef3e8bc4
1 changed files with 35 additions and 28 deletions

View File

@ -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()