base_ui/routes/task.ts
Mehdi104797 c460543f5d .
2025-04-28 08:28:52 +03:30

54 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export default [
{
path: "/task",
file: "@task/pages/index.vue",
meta: { breadcrumb: "سامانه وظایف" },
children: [
{
path: "",
redirect: { name: "taskDashboard" },
},
{
path: "dashboard",
name: "taskDashboard",
file: "@task/pages/TaskDashboard.vue",
meta: {
breadcrumb: "پیشخوان مدیریت وظایف",
},
},
{
path: "times/list",
name: "taskTimes",
file: "@task/pages/Task.vue",
meta: {
breadcrumb: "ساعات",
},
},
{
path: "tasks/list",
name: "taskList",
file: "@task/pages/Task.vue",
meta: {
breadcrumb: "وظایف",
},
},
{
path: "teams/list",
name: "teams",
file: "@task/pages/TaskTeams.vue",
meta: {
breadcrumb: "تیم ها",
},
},
{
path: "admin/list",
name: "taskReport",
file: "@task/pages/TaskReport.vue",
meta: {
breadcrumb: "گزارش وظایف",
},
},
],
},
];