updated role menu
This commit is contained in:
parent
6f861c0027
commit
429e2bde32
9 changed files with 8 additions and 7 deletions
10
src/modules/04_registryNew/interface/index/Main.ts
Normal file
10
src/modules/04_registryNew/interface/index/Main.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
interface Pagination {
|
||||
rowsPerPage: number;
|
||||
}
|
||||
|
||||
interface DataOption {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { Pagination, DataOption };
|
||||
14
src/modules/04_registryNew/interface/request/Main.ts
Normal file
14
src/modules/04_registryNew/interface/request/Main.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
interface DataSumCalendarObject {
|
||||
id: number;
|
||||
monthFull: String;
|
||||
count: number;
|
||||
color: String;
|
||||
}
|
||||
|
||||
interface DataListsObject {
|
||||
id: number;
|
||||
count: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { DataSumCalendarObject, DataListsObject };
|
||||
14
src/modules/04_registryNew/router.ts
Normal file
14
src/modules/04_registryNew/router.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
const mainPage = () => import("@/modules/04_registryNew/views/main.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/registry-new",
|
||||
name: "registryNew",
|
||||
component: mainPage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [7],
|
||||
Role: "organization",
|
||||
},
|
||||
},
|
||||
];
|
||||
0
src/modules/04_registryNew/store.ts
Normal file
0
src/modules/04_registryNew/store.ts
Normal file
7
src/modules/04_registryNew/views/main.vue
Normal file
7
src/modules/04_registryNew/views/main.vue
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<template>
|
||||
ทะเบียนประวัติ (ใหม่)
|
||||
</template>
|
||||
|
||||
<script setup lang="ts"></script>
|
||||
|
||||
<style scoped></style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue