1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
| <template>
| <el-card shadow="never">
| <template #header>
| <CardTitle title="快捷入口" />
| </template>
| <div class="flex flex-row flex-wrap gap-8 p-4">
| <div
| v-for="menu in menuList"
| :key="menu.name"
| class="h-20 w-20% flex flex-col cursor-pointer items-center justify-center gap-2"
| @click="handleMenuClick(menu.routerName)"
| >
| <div
| :class="menu.bgColor"
| class="h-48px w-48px flex items-center justify-center rounded text-white"
| >
| <Icon :icon="menu.icon" class="text-7.5!" />
| </div>
| <span>{{ menu.name }}</span>
| </div>
| </div>
| </el-card>
| </template>
| <script lang="ts" setup>
| /** 快捷入口卡片 */
| import { CardTitle } from '@/components/Card'
|
| defineOptions({ name: 'ShortcutCard' })
|
| const router = useRouter() // 路由
|
| /** 菜单列表 */
| const menuList = [
| { name: '用户管理', icon: 'ep:user-filled', bgColor: 'bg-red-400', routerName: 'MemberUser' },
| {
| name: '商品管理',
| icon: 'fluent-mdl2:product',
| bgColor: 'bg-orange-400',
| routerName: 'ProductSpu'
| },
| { name: '订单管理', icon: 'ep:list', bgColor: 'bg-yellow-500', routerName: 'TradeOrder' },
| {
| name: '售后管理',
| icon: 'ri:refund-2-line',
| bgColor: 'bg-green-600',
| routerName: 'TradeAfterSale'
| },
| {
| name: '分销管理',
| icon: 'fa-solid:project-diagram',
| bgColor: 'bg-cyan-500',
| routerName: 'TradeBrokerageUser'
| },
| {
| name: '优惠券',
| icon: 'ep:ticket',
| bgColor: 'bg-blue-500',
| routerName: 'PromotionCoupon'
| },
| {
| name: '拼团活动',
| icon: 'fa:group',
| bgColor: 'bg-purple-500',
| routerName: 'PromotionBargainActivity'
| },
| {
| name: '佣金提现',
| icon: 'vaadin:money-withdraw',
| bgColor: 'bg-rose-500',
| routerName: 'TradeBrokerageWithdraw'
| }
| ]
|
| /**
| * 跳转到菜单对应页面
| *
| * @param routerName 路由页面组件的名称
| */
| const handleMenuClick = (routerName: string) => {
| router.push({ name: routerName })
| }
| </script>
|
|