29 lines
480 B
JavaScript
29 lines
480 B
JavaScript
import { sp, pt, ms, kj } from "@/utils/images";
|
|
|
|
export const menuList = [
|
|
{
|
|
id: 1,
|
|
label: '全部商品',
|
|
icon: sp,
|
|
path: '/pages/goodsList/goodsList'
|
|
},
|
|
{
|
|
id: 2,
|
|
label: '拼团专区',
|
|
icon: pt,
|
|
path: ''
|
|
},
|
|
{
|
|
id: 3,
|
|
label: '秒杀专区',
|
|
icon: ms,
|
|
path: ''
|
|
},
|
|
{
|
|
id: 4,
|
|
label: '砍价专区',
|
|
icon: kj,
|
|
path: ''
|
|
},
|
|
]
|