UI ข้อมูลทะเบียนประวัติ(ยังไม่เสร็จ)

This commit is contained in:
STW_TTTY\stwtt 2024-05-23 18:03:23 +07:00
parent 3221535748
commit 8e7e120d73
10 changed files with 958 additions and 0 deletions

View file

@ -0,0 +1,66 @@
// registry
const registryPage = () => import("@/modules/10_registry/views/main.vue");
const registryInformation = () => import("@/modules/10_registry/tabs/01_information.vue");
const registryGovernment = () => import("@/modules/10_registry/tabs/02_government.vue");
const registrySalary = () => import("@/modules/10_registry/tabs/03_salary.vue");
const registryInsignia = () => import("@/modules/10_registry/tabs/04_insignia.vue");
const registryOther = () => import("@/modules/10_registry/tabs/05_other.vue");
export default [
{
path: "/registry",
name: "registryMain",
component: registryPage,
meta: {
Auth: true,
Key: [10],
},
},
{
path: "/registry/information",
name: "registryInformation",
component: registryInformation,
meta: {
Auth: true,
Key: [10],
},
},
{
path: "/registry/government",
name: "registryGovernment",
component: registryGovernment,
meta: {
Auth: true,
Key: [10],
},
},
{
path: "/registry/salary",
name: "registrySalary",
component: registrySalary,
meta: {
Auth: true,
Key: [10],
},
},
{
path: "/registry/insignia",
name: "registryInsignia",
component: registryInsignia,
meta: {
Auth: true,
Key: [10],
},
},
{
path: "/registry/other",
name: "registryOther",
component: registryOther,
meta: {
Auth: true,
Key: [10],
},
},
];