update
This commit is contained in:
parent
46533bbd62
commit
15d3ac574d
128 changed files with 347 additions and 322 deletions
49
src/modules/04_registryPerson/router.ts
Normal file
49
src/modules/04_registryPerson/router.ts
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
const listPage = () => import("@/modules/04_registryPerson/views/list.vue");
|
||||
const detailPage = () =>
|
||||
import("@/modules/04_registryPerson/views/detailView.vue");
|
||||
|
||||
const requestEdit = () =>
|
||||
import("@/modules/04_registryPerson/views/requestEdit.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/registry-person",
|
||||
name: "registryNew",
|
||||
component: listPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: "SYS_REGISTRY",
|
||||
Role: "STAFF",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/registry-person/:id",
|
||||
name: "registryNewByid",
|
||||
component: detailPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: "SYS_REGISTRY",
|
||||
Role: "STAFF",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/registry-employee/:id",
|
||||
name: "registryNewEmployeeByid",
|
||||
component: detailPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: "SYS_REGISTRY_EMP",
|
||||
Role: "STAFF",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/registry-person/request-edit",
|
||||
name: "registryNewRequestEdit",
|
||||
component: requestEdit,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: "SYS_REGISTRY",
|
||||
Role: "STAFF",
|
||||
},
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue