report evaluate

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-02-10 18:14:12 +07:00
parent d71f87a17b
commit dc437a8ade
3 changed files with 434 additions and 0 deletions

View file

@ -18,6 +18,11 @@ const reportInsignia = () =>
const reportExam = () =>
import("@/modules/03_recruiting/views/01_compete/CompeteReport.vue");
const ReportEvaluate = () =>
import("@/modules/21_report/views/04_reportEvaluate.vue");
const ReportSalary = () =>
import("@/modules/21_report/views/05_reportSalary.vue");
export default [
{
path: "/report/org",
@ -129,4 +134,24 @@ export default [
Role: "STAFF",
},
},
{
path: "/report/evaluate",
name: "reportEvaluate",
component: ReportEvaluate,
meta: {
Auth: true,
Key: "REPORT_EVALUATE",
Role: "STAFF",
},
},
{
path: "/report/salary",
name: "reportSalary",
component: ReportSalary,
meta: {
Auth: true,
Key: "REPORT_SALARY",
Role: "STAFF",
},
},
];