diff --git a/src/components/DialogDebug.vue b/src/components/DialogDebug.vue index 1b87bba..5fa1f3f 100644 --- a/src/components/DialogDebug.vue +++ b/src/components/DialogDebug.vue @@ -37,6 +37,8 @@ const formData = reactive({ system: 'checkin', fileAttachments: [] as File[], menu: '', + email: '', + phone: '', }) /** ฟังก์ชันบันทึกข้อมูล */ @@ -50,6 +52,8 @@ function onSubmit() { system: formData.system, menu: formData.menu, org: orgName.value, + email: formData.email, + phone: formData.phone, } const res = await http.post(config.API.orgIssues, payload) @@ -164,6 +168,8 @@ function onClose() { formData.title = '' formData.description = '' formData.fileAttachments = [] + formData.email = '' + formData.phone = '' } @@ -297,6 +303,42 @@ function onClose() { +
+
+
+ +
+
+ +
+
+
diff --git a/src/views/MainView.vue b/src/views/MainView.vue index 3d6b11a..043132d 100644 --- a/src/views/MainView.vue +++ b/src/views/MainView.vue @@ -501,7 +501,7 @@ onMounted(async () => {