เพิ่มเมนูย่อยเงินเดือน
This commit is contained in:
parent
3fc169cd28
commit
0fd75e09f9
6 changed files with 56 additions and 0 deletions
|
|
@ -627,6 +627,18 @@ const menuList = readonly<any[]>([
|
||||||
path: "salaryChart",
|
path: "salaryChart",
|
||||||
role: "salary",
|
role: "salary",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 12.2,
|
||||||
|
label: "รอบการขึ้นเงินเดือน",
|
||||||
|
path: "salaryRound",
|
||||||
|
role: "salary",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 12.3,
|
||||||
|
label: "รายการเงินเดือน",
|
||||||
|
path: "salaryLists",
|
||||||
|
role: "salary",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
const salaryChart = () => import("@/modules/13_salary/views/salaryChart.vue");
|
const salaryChart = () => import("@/modules/13_salary/views/salaryChart.vue");
|
||||||
const salaryRate = () => import("@/modules/13_salary/views/salaryRate.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 [
|
export default [
|
||||||
{
|
{
|
||||||
|
|
@ -22,4 +24,24 @@ export default [
|
||||||
Role: "salary",
|
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",
|
||||||
|
},
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
|
||||||
11
src/modules/13_salary/views/salaryLists.vue
Normal file
11
src/modules/13_salary/views/salaryLists.vue
Normal 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>
|
||||||
11
src/modules/13_salary/views/salaryRound.vue
Normal file
11
src/modules/13_salary/views/salaryRound.vue
Normal 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>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue