diff --git a/src/components/Dialogs/DialogDebug.vue b/src/components/Dialogs/DialogDebug.vue index 8d475ec9c..917151c0e 100644 --- a/src/components/Dialogs/DialogDebug.vue +++ b/src/components/Dialogs/DialogDebug.vue @@ -47,6 +47,8 @@ const formData = reactive({ system: "mgt", fileAttachments: [] as File[], menu: "", + email: "", + phone: "", }); /** ฟังก์ชันบันทึกข้อมูล */ @@ -60,6 +62,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); @@ -187,6 +191,8 @@ function onClose() { formData.title = ""; formData.description = ""; formData.fileAttachments = []; + formData.email = ""; + formData.phone = ""; } @@ -344,6 +350,43 @@ function onClose() { + +
+
+
+ +
+
+ +
+
+
diff --git a/src/views/MainLayout.vue b/src/views/MainLayout.vue index 2081fcc54..452e437a4 100644 --- a/src/views/MainLayout.vue +++ b/src/views/MainLayout.vue @@ -790,7 +790,7 @@ function onViewDetailNoti(url: string) {