ปรับเพิ่มเมนู KPI

This commit is contained in:
Warunee Tamkoo 2024-04-04 10:26:13 +07:00
parent 7cdcebf5e0
commit 50e5636e79
7 changed files with 90 additions and 6 deletions

View file

@ -1,10 +1,43 @@
const mainPage = () => import("@/modules/14_KPI/views/MainPage.vue");
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");
export default [
{
path: "/KPI",
name: "KPIMain",
component: mainPage,
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,
meta: {
Auth: true,
Key: [1.1],

View file

@ -0,0 +1,5 @@
<template>
<div>
สมรรถนะ
</div>
</template>

View file

@ -0,0 +1,5 @@
<template>
<div>
ตามแผนปฏราชการประจำป
</div>
</template>

View file

@ -0,0 +1,5 @@
<template>
<div>
ตามหนาทความรบผดชอบ
</div>
</template>