เพิ่มเมนูย่อยเงินเดือน

This commit is contained in:
Warunee Tamkoo 2024-02-21 16:24:27 +07:00
parent 3fc169cd28
commit 0fd75e09f9
6 changed files with 56 additions and 0 deletions

View file

@ -627,6 +627,18 @@ const menuList = readonly<any[]>([
path: "salaryChart",
role: "salary",
},
{
key: 12.2,
label: "รอบการขึ้นเงินเดือน",
path: "salaryRound",
role: "salary",
},
{
key: 12.3,
label: "รายการเงินเดือน",
path: "salaryLists",
role: "salary",
},
],
},
{

View file

@ -1,5 +1,7 @@
const salaryChart = () => import("@/modules/13_salary/views/salaryChart.vue");
const salaryRate = () => import("@/modules/13_salary/views/salaryRate.vue");
const salaryRound = () => import("@/modules/13_salary/views/salaryRound.vue");
const salaryLists = () => import("@/modules/13_salary/views/salaryLists.vue");
export default [
{
@ -22,4 +24,24 @@ export default [
Role: "salary",
},
},
{
path: "/salary/round",
name: "salaryRound",
component: salaryRound,
meta: {
Auth: true,
Key: [1.3],
Role: "salary",
},
},
{
path: "/salary/lists",
name: "salaryLists",
component: salaryLists,
meta: {
Auth: true,
Key: [1.4],
Role: "salary",
},
},
];

View file

@ -0,0 +1,11 @@
<script setup lang="ts"></script>
<template>
<div class="row items-center">
<div class="toptitle text-dark row items-center q-py-xs">
รายการเงนเดอน
</div>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,11 @@
<script setup lang="ts"></script>
<template>
<div class="row items-center">
<div class="toptitle text-dark row items-center q-py-xs">
รอบการขนเงนเดอน
</div>
</div>
</template>
<style scoped></style>