34 lines
647 B
JavaScript
34 lines
647 B
JavaScript
const menuTable = [
|
|
{
|
|
title: "首页",
|
|
url: "/home",
|
|
icon: "HomeFilled",
|
|
},
|
|
{
|
|
title: "组别管理",
|
|
url: "/groupManagement",
|
|
icon: "Notebook",
|
|
},
|
|
{
|
|
title: "综合部初审列表",
|
|
url: "/performance/attendance/general",
|
|
icon: "Notebook",
|
|
},
|
|
{
|
|
title: "主管审批列表",
|
|
url: "/performance/attendance/manager",
|
|
icon: "Notebook",
|
|
},
|
|
{
|
|
title: "综合部复审列表",
|
|
url: "/performance/attendance/reviewed",
|
|
icon: "Notebook",
|
|
},
|
|
{
|
|
title: "财务考勤列表",
|
|
url: "/performance/attendance/finance",
|
|
icon: "Notebook",
|
|
},
|
|
];
|
|
export default menuTable;
|