diff --git a/src/modules/07_insignia/components/1_Proposals/addProposals.vue b/src/modules/07_insignia/components/1_Proposals/addProposals.vue index bb59267c9..725b8ced2 100644 --- a/src/modules/07_insignia/components/1_Proposals/addProposals.vue +++ b/src/modules/07_insignia/components/1_Proposals/addProposals.vue @@ -217,8 +217,8 @@ const fileDocDataUpload = ref([]); const roundInsig = ref(); const datelast = ref(1); const options = ref([ - {label:"ครั้งที่ 1",value:1}, - {label:"ครั้งที่ 2",value:2} + {label:"รอบที่ 1",value:1}, + {label:"รอบที่ 2",value:2} ]) onMounted(async () => { await fetchData(); diff --git a/src/modules/07_insignia/components/2_Manage/Tab2.vue b/src/modules/07_insignia/components/2_Manage/Tab2.vue index 06e7fcf32..720d26b59 100644 --- a/src/modules/07_insignia/components/2_Manage/Tab2.vue +++ b/src/modules/07_insignia/components/2_Manage/Tab2.vue @@ -1,7 +1,8 @@ + + + + diff --git a/src/modules/09_coin/components/2_Manage/StatCard.vue b/src/modules/09_coin/components/2_Manage/StatCard.vue new file mode 100644 index 000000000..67ddb48bc --- /dev/null +++ b/src/modules/09_coin/components/2_Manage/StatCard.vue @@ -0,0 +1,43 @@ + + diff --git a/src/modules/09_coin/components/2_Manage/Tab1.vue b/src/modules/09_coin/components/2_Manage/Tab1.vue new file mode 100644 index 000000000..10d8a7f18 --- /dev/null +++ b/src/modules/09_coin/components/2_Manage/Tab1.vue @@ -0,0 +1,465 @@ + + diff --git a/src/modules/09_coin/components/2_Manage/Tab2.vue b/src/modules/09_coin/components/2_Manage/Tab2.vue new file mode 100644 index 000000000..720d26b59 --- /dev/null +++ b/src/modules/09_coin/components/2_Manage/Tab2.vue @@ -0,0 +1,340 @@ + + diff --git a/src/modules/09_coin/components/2_Manage/Tab3.vue b/src/modules/09_coin/components/2_Manage/Tab3.vue new file mode 100644 index 000000000..06e7fcf32 --- /dev/null +++ b/src/modules/09_coin/components/2_Manage/Tab3.vue @@ -0,0 +1,339 @@ + + diff --git a/src/modules/09_coin/components/2_Manage/Tab4.vue b/src/modules/09_coin/components/2_Manage/Tab4.vue new file mode 100644 index 000000000..079f68c1f --- /dev/null +++ b/src/modules/09_coin/components/2_Manage/Tab4.vue @@ -0,0 +1,315 @@ + + diff --git a/src/modules/09_coin/components/3_Receive/Main.vue b/src/modules/09_coin/components/3_Receive/Main.vue new file mode 100644 index 000000000..ed204cd62 --- /dev/null +++ b/src/modules/09_coin/components/3_Receive/Main.vue @@ -0,0 +1,495 @@ + + + + diff --git a/src/modules/09_coin/components/4_Payment/Main.vue b/src/modules/09_coin/components/4_Payment/Main.vue new file mode 100644 index 000000000..6069533aa --- /dev/null +++ b/src/modules/09_coin/components/4_Payment/Main.vue @@ -0,0 +1,298 @@ + + + + diff --git a/src/modules/09_coin/router.ts b/src/modules/09_coin/router.ts index 6507166d6..9970c75d1 100644 --- a/src/modules/09_coin/router.ts +++ b/src/modules/09_coin/router.ts @@ -15,6 +15,9 @@ const coinAllocateDetail = () => import("@/modules/09_coin/components/coinAlloca const coinAllocateDetailAdd = () => import("@/modules/09_coin/components/coinAllocate/coinAllocateDetailAdd.vue") const coinReport = () => import("@/modules/09_coin/components/coinReport/coinReportMain.vue") const coinReportDetail = () => import("@/modules/09_coin/components/coinReport/coinReportDetail.vue") +const mainMange = () => import("@/modules/09_coin/components/2_Manage/Main.vue"); +const mainReceive = () => import("@/modules/09_coin/components/3_Receive/Main.vue"); +const mainPayment = () => import("@/modules/09_coin/components/4_Payment/Main.vue"); export default [ { path: "/coin", @@ -76,6 +79,16 @@ export default [ Role: "coin", }, }, + { + path: "/coin/manage", + name: "coinManage", + component: mainMange, + meta: { + Auth: true, + Key: [8.2], + Role: "coin", + }, + }, { path: "/coin/allocate/list-allocate", name: "coinAllocate", @@ -86,6 +99,16 @@ export default [ Role: "coin", }, }, + { + path: "/coin/receive", + name: "coinReceive", + component: mainReceive, + meta: { + Auth: true, + Key: [8.2], + Role: "coin", + }, + }, { path: "/coin/allocate/allocate-add", name: "coinAllocate-Add", @@ -136,4 +159,13 @@ export default [ Role: "coin", }, }, + { path: "/coin/payment", + name: "coinPayment", + component: mainPayment, + meta: { + Auth: true, + Key: [8.2], + Role: "coin", + }, + }, ];