From 0d7d14ce41273f0addb9a1b1285276a2c1140d20 Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Tue, 26 Mar 2024 09:56:49 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=81=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=E0=B9=82=E0=B8=84=E0=B8=A3=E0=B8=87=E0=B8=81=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3/=E0=B8=AB=E0=B8=A5=E0=B8=B1=E0=B8=81=E0=B8=AA?= =?UTF-8?q?=E0=B8=B9=E0=B8=95=E0=B8=A3=E0=B8=81=E0=B8=B2=E0=B8=A3=E0=B8=9D?= =?UTF-8?q?=E0=B8=B6=E0=B8=81=E0=B8=AD=E0=B8=9A=E0=B8=A3=E0=B8=A1=E0=B8=97?= =?UTF-8?q?=E0=B8=B5=E0=B9=88=E0=B8=AB=E0=B8=99=E0=B9=88=E0=B8=A7=E0=B8=A2?= =?UTF-8?q?=E0=B8=87=E0=B8=B2=E0=B8=99=E0=B8=82=E0=B8=AD=E0=B8=87=E0=B8=81?= =?UTF-8?q?=E0=B8=A3=E0=B8=B8=E0=B8=87=E0=B9=80=E0=B8=97=E0=B8=9E=E0=B8=A1?= =?UTF-8?q?=E0=B8=AB=E0=B8=B2=E0=B8=99=E0=B8=84=E0=B8=A3=E0=B9=80=E0=B8=9B?= =?UTF-8?q?=E0=B9=87=E0=B8=99=E0=B8=9C=E0=B8=B9=E0=B9=89=E0=B8=88=E0=B8=B1?= =?UTF-8?q?=E0=B8=94=20=3D>=20=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88?= =?UTF-8?q?=E0=B8=A1=20interface?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../15_development/components/BasicInfo.vue | 19 +++++++---- .../15_development/components/MainTab.vue | 2 +- .../15_development/components/Table.vue | 5 --- .../15_development/components/Target.vue | 14 ++++++-- .../15_development/interface/request/Main.ts | 34 +++++++++++++++++++ .../15_development/interface/response/Main.ts | 6 ---- .../15_development/store/developmentStore.ts | 4 ++- 7 files changed, 61 insertions(+), 23 deletions(-) delete mode 100644 src/modules/15_development/components/Table.vue create mode 100644 src/modules/15_development/interface/request/Main.ts diff --git a/src/modules/15_development/components/BasicInfo.vue b/src/modules/15_development/components/BasicInfo.vue index 73d856f11..1a6ea723f 100644 --- a/src/modules/15_development/components/BasicInfo.vue +++ b/src/modules/15_development/components/BasicInfo.vue @@ -2,27 +2,32 @@ import { onMounted, reactive, ref } from "vue"; import { useQuasar } from "quasar"; +import type { FormBasicinfo } from "@/modules/15_development/interface/request/Main"; + import { useCounterMixin } from "@/stores/mixin"; const $q = useQuasar(); const { showLoader, hideLoader, dialogConfirm } = useCounterMixin(); -onMounted(() => { - console.log("ข้อมูลเบื้องต้น"); -}); - -const formData = reactive({ +const formData = reactive({ year: new Date().getFullYear(), - org: "", + org: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานครกองบริหารทั้วไป", projectName: "", reason: "", objective: "", }); -const options = ref(["Google", "Facebook", "Twitter", "Apple", "Oracle"]); +const options = ref([ + "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานครกองบริหารทั้วไป", + "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร", +]); function onSubmit() { dialogConfirm($q, () => {}); } + +onMounted(() => { + console.log("ข้อมูลเบื้องต้น"); +});