2024-04-04 10:26:13 +07:00
|
|
|
const roundPage = () => import("@/modules/14_KPI/views/round.vue");
|
|
|
|
|
const IndicatorByPlan = () => import("@/modules/14_KPI/views/indicatorByPlan.vue");
|
|
|
|
|
const IndicatorByRole = () => import("@/modules/14_KPI/views/indicatorByRole.vue");
|
|
|
|
|
const competencyPage = () => import("@/modules/14_KPI/views/competency.vue");
|
2024-02-15 11:46:25 +07:00
|
|
|
|
|
|
|
|
export default [
|
|
|
|
|
{
|
|
|
|
|
path: "/KPI",
|
2024-04-04 10:26:13 +07:00
|
|
|
name: "KPIRound",
|
|
|
|
|
component: roundPage,
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
Key: [1.1],
|
|
|
|
|
Role: "evaluateKPI",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/KPI",
|
|
|
|
|
name: "KPIIndicatorByPlan",
|
|
|
|
|
component: IndicatorByPlan,
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
Key: [1.1],
|
|
|
|
|
Role: "evaluateKPI",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/KPI",
|
|
|
|
|
name: "KPIIndicatorByRole",
|
|
|
|
|
component: IndicatorByRole,
|
|
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
Key: [1.1],
|
|
|
|
|
Role: "evaluateKPI",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
path: "/KPI",
|
|
|
|
|
name: "KPICompetency",
|
|
|
|
|
component: competencyPage,
|
2024-02-15 11:46:25 +07:00
|
|
|
meta: {
|
|
|
|
|
Auth: true,
|
|
|
|
|
Key: [1.1],
|
|
|
|
|
Role: "evaluateKPI",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
];
|