This commit is contained in:
Warunee Tamkoo 2025-03-19 12:34:49 +07:00
parent 98acdd66bf
commit ced0326a49
2 changed files with 56 additions and 0 deletions

View file

@ -20,6 +20,8 @@ const Page01_Detail = () =>
// edit
const EditListPage = () =>
import("@/modules/04_registryPerson/views/edit/list.vue");
const EditListSalaryPage = () =>
import("@/modules/04_registryPerson/views/edit/salary.vue");
export default [
{
@ -135,4 +137,14 @@ export default [
Role: "STAFF",
},
},
{
path: "/registry/edit/salary/:id",
name: "registryEditSalary",
component: EditListSalaryPage,
meta: {
Auth: true,
Key: "SYS_REGISTRY_EDIT",
Role: "STAFF",
},
},
];