ปรับเมนู KPI

This commit is contained in:
Warunee Tamkoo 2024-04-22 09:39:04 +07:00
parent b82dd420eb
commit 11ced9f05a
4 changed files with 284 additions and 2 deletions

View file

@ -4,6 +4,7 @@
const KPIPage = () => import("@/modules/08_KPI/views/main.vue");
const FormPage = () => import("@/modules/08_KPI/views/form.vue");
const KPIMainEvaluator = () => import("@/modules/08_KPI/views/mainEvaluator.vue");
export default [
{
@ -33,4 +34,22 @@ export default [
Key: [8.2],
},
},
{
path: "/KPI-evaluator",
name: "KPIMainEvaluator",
component: KPIMainEvaluator,
meta: {
Auth: true,
Key: [8.3],
},
},
{
path: "/KPI-evaluator/:id",
name: "KPIEditEvaluator",
component: FormPage,
meta: {
Auth: true,
Key: [8.4],
},
},
];