UI ข้อมูลทะเบียนประวัติ(ยังไม่เสร็จ)
This commit is contained in:
parent
3221535748
commit
8e7e120d73
10 changed files with 958 additions and 0 deletions
66
src/modules/10_registry/router.ts
Normal file
66
src/modules/10_registry/router.ts
Normal 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],
|
||||
},
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue