86 lines
2.0 KiB
TypeScript
86 lines
2.0 KiB
TypeScript
/*
|
|
* @Author: kongbeiwu lishaohua-520@qq.com
|
|
* @Date: 2025-12-21 23:02:06
|
|
* @LastEditors: kongbeiwu lishaohua-520@qq.com
|
|
* @LastEditTime: 2025-12-22 00:42:49
|
|
* @FilePath: /project/zn-ai/src/renderer/constant/menus.ts
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
*/
|
|
import { RiHomeLine, RiFileEditLine, RiFileListLine, RiHotelLine, RiChatQuoteLine, RiBarChartBoxAiLine, RiMoreLine, RiSettingsLine } from '@remixicon/vue'
|
|
|
|
// 菜单列表申明
|
|
export interface MenuItem {
|
|
id: number
|
|
name: string
|
|
icon: any
|
|
color: string
|
|
activeColor: string
|
|
url: string
|
|
}
|
|
|
|
export const menus: MenuItem[] = [
|
|
{
|
|
id: 1,
|
|
name: '首页',
|
|
icon: RiHomeLine,
|
|
color: '#525866',
|
|
activeColor: '#2B7FFF',
|
|
url: '/home',
|
|
},
|
|
{
|
|
id: 8,
|
|
name: '知识库',
|
|
icon: RiFileEditLine,
|
|
color: '#525866',
|
|
activeColor: '#2B7FFF',
|
|
url: '/knowledge',
|
|
},
|
|
{
|
|
id: 2,
|
|
name: '订单',
|
|
icon: RiFileListLine,
|
|
color: '#525866',
|
|
activeColor: '#2B7FFF',
|
|
url: '/order',
|
|
},
|
|
{
|
|
id: 3,
|
|
name: '库存',
|
|
icon: RiHotelLine,
|
|
color: '#525866',
|
|
activeColor: '#2B7FFF',
|
|
url: '/stock',
|
|
},
|
|
{
|
|
id: 4,
|
|
name: '评价',
|
|
icon: RiChatQuoteLine,
|
|
color: '#525866',
|
|
activeColor: '#2B7FFF',
|
|
url: '/rate',
|
|
},
|
|
{
|
|
id: 5,
|
|
name: '数据看板',
|
|
icon: RiBarChartBoxAiLine,
|
|
color: '#525866',
|
|
activeColor: '#2B7FFF',
|
|
url: '/dashboard',
|
|
},
|
|
{
|
|
id: 6,
|
|
name: '更多',
|
|
icon: RiMoreLine,
|
|
color: '#525866',
|
|
activeColor: '#2B7FFF',
|
|
url: '/more',
|
|
},
|
|
{
|
|
id: 7,
|
|
name: '设置',
|
|
icon: RiSettingsLine,
|
|
color: '#525866',
|
|
activeColor: '#2B7FFF',
|
|
url: '/setting',
|
|
},
|
|
] |