เพิ่มออกคำสั่งเลื่อนเงินเดือน/ค่าจ้าง

This commit is contained in:
Warunee Tamkoo 2024-03-20 11:59:07 +07:00
parent 8af904dcd2
commit fa6ff957f6
7 changed files with 5452 additions and 0 deletions

View file

@ -8,6 +8,8 @@ const salaryRound = () => import("@/modules/13_salary/views/salaryRound.vue");
const salaryLists = () => import("@/modules/13_salary/views/salaryLists.vue");
const salaryEmployeeLists = () =>
import("@/modules/13_salary/views/salaryEmployeeLists.vue");
const commandSalary = () =>
import("@/modules/13_salary/views/commandSalary.vue");
export default [
{
@ -80,4 +82,14 @@ export default [
Role: "salary",
},
},
{
path: "/salary/command",
name: "commandSalary",
component: commandSalary,
meta: {
Auth: true,
Key: [1.5],
Role: "salary",
},
},
];