first commit
This commit is contained in:
commit
eb2f504652
32490 changed files with 5731109 additions and 0 deletions
7
src/modules/01_manual/components/01_login.vue
Normal file
7
src/modules/01_manual/components/01_login.vue
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
<template>
|
||||
<div class="toptitle text-dark col-12 row items-center">
|
||||
คู่มือการเข้าสู่ระบบ (Login)
|
||||
<q-space />
|
||||
</div>
|
||||
</template>
|
||||
10
src/modules/01_manual/interface/index/Main.ts
Normal file
10
src/modules/01_manual/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/01_manual/interface/request/Main.ts
Normal file
14
src/modules/01_manual/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/01_manual/router.ts
Normal file
14
src/modules/01_manual/router.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
const ManualHomePage = () => import("@/modules/01_manual/views/Main.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/manual",
|
||||
name: "manual",
|
||||
component: ManualHomePage,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [1],
|
||||
Role: "metadata",
|
||||
},
|
||||
},
|
||||
];
|
||||
0
src/modules/01_manual/store.ts
Normal file
0
src/modules/01_manual/store.ts
Normal file
10
src/modules/01_manual/views/Main.vue
Normal file
10
src/modules/01_manual/views/Main.vue
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<script setup lang="ts">
|
||||
import LoginPage from "@/modules/01_manual/components/01_login.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<LoginPage />
|
||||
|
||||
</div>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue