โครงสร้าง folder ชื่อ 11_discipline

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-10-16 13:28:48 +07:00
parent 6119fbcb59
commit 58a99e1e49
12 changed files with 182 additions and 8 deletions

View file

@ -0,0 +1,9 @@
<script setup lang="ts"></script>
<template>
<div>
<h1>เรองรองเรยน</h1>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,9 @@
<script setup lang="ts"></script>
<template>
<div>
<h1>บสวนขอเทจจร</h1>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,9 @@
<script setup lang="ts"></script>
<template>
<div>
<h1>สอบสวนความผดว</h1>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,9 @@
<script setup lang="ts"></script>
<template>
<div>
<h1>เรองรองเรยน</h1>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,9 @@
<script setup lang="ts"></script>
<template>
<div>
<h1>เรองรองเรยน</h1>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,9 @@
<script setup lang="ts"></script>
<template>
<div>
<h1>เรองรองเรยน</h1>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,9 @@
<script setup lang="ts"></script>
<template>
<div>
<h1>เรองรองเรยน</h1>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,4 @@
export type {
};

View file

@ -0,0 +1,38 @@
const complaintMain = () => import("@/modules/11_discipline/components/1_Complaint/MainPage.vue")
const factsMain = () => import("@/modules/11_discipline/components/2_InvestigateFacts/MainPage.vue")
const disciplinaryMain = () => import("@/modules/11_discipline/components/3_InvestigateDisciplinary/MainPage.vue")
export default [
{
path: "/discipline/complaints",
name: "/discipline-complaints",
component: complaintMain,
meta: {
Auth: true,
Key: [11.1],
Role: "coin",
},
},
{
path: "/discipline/investigatefacts",
name: "/discipline-investigatefacts",
component: factsMain,
meta: {
Auth: true,
Key: [11.2],
Role: "coin",
},
},
{
path: "/discipline/disciplinary",
name: "/discipline-disciplinary",
component: disciplinaryMain,
meta: {
Auth: true,
Key: [9],
Role: "coin",
},
},
]