|
@@ -14,7 +14,7 @@
|
|
|
<div class="listBox" v-for="(val, index) in menuList" :key="'menuBox' + index">
|
|
|
<div
|
|
|
v-for="(item, index) in val" :key="'menu' + index"
|
|
|
- class="listItem mb-8 mx-3"
|
|
|
+ class="listItem mb-6 mx-3"
|
|
|
@click="handleClick(item)"
|
|
|
>
|
|
|
<v-icon color="primary" size="50" class="mt-6" style="height: 100px; line-height: 100px;">{{ item.icon }}</v-icon>
|
|
@@ -40,8 +40,8 @@ const menuList = ref([
|
|
|
{ icon: 'mdi-shopping-outline', title: '臻选商城', to: '/mall' },
|
|
|
{ icon: 'mdi-school-outline', title: '火苗儿校企', to: '' },
|
|
|
{ icon: 'mdi-account-search', title: '门墩儿猎寻服务', to: '/headhunting' },
|
|
|
- { icon: 'mdi-database-outline', title: '数据服务', to: '' },
|
|
|
{ icon: 'mdi-town-hall', title: '门墩儿产业与院校联合会', to: '' },
|
|
|
+ { icon: 'mdi-database-outline', title: '数据服务', to: '' },
|
|
|
])
|
|
|
|
|
|
// 每行三个
|