init
This commit is contained in:
parent
adbacefc1c
commit
9eef3e8bc4
|
|
@ -53,6 +53,41 @@ defineOptions({
|
||||||
const weatherInfo = useWeatherInfo()
|
const weatherInfo = useWeatherInfo()
|
||||||
|
|
||||||
const toolCards = ref([
|
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: '用户管理',
|
label: '用户管理',
|
||||||
icon: 'monitor',
|
icon: 'monitor',
|
||||||
|
|
@ -60,34 +95,6 @@ const toolCards = ref([
|
||||||
color: '#ff9c6e',
|
color: '#ff9c6e',
|
||||||
bg: 'rgba(255, 156, 110,.3)'
|
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()
|
const router = useRouter()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue