fix:add fiedl email phone

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-02-04 13:01:41 +07:00
parent 3e568267ba
commit 5c7be2e4a8
2 changed files with 44 additions and 1 deletions

View file

@ -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 = "";
}
</script>
@ -344,6 +350,43 @@ function onClose() {
</template>
</q-uploader>
</div>
<div class="col-12">
<div class="row col-12 q-col-gutter-sm">
<div class="col-xs-12 col-md-6 col-lg-6">
<q-input
dense
outlined
label="อีเมลติดต่อกลับ"
v-model="formData.email"
class="inputgreen"
hide-bottom-space
:rules="[
() =>
!!formData.email ||
!!formData.phone ||
'กรุณากรอกอีเมลหรือเบอร์โทรติดต่อกลับ',
]"
/>
</div>
<div class="col-xs-12 col-md-6 col-lg-6">
<q-input
dense
outlined
label="เบอร์โทรติดต่อกลับ"
v-model="formData.phone"
class="inputgreen"
hide-bottom-space
:rules="[
() =>
!!formData.email ||
!!formData.phone ||
'กรุณากรอกอีเมลหรือเบอร์โทรติดต่อกลับ',
]"
/>
</div>
</div>
</div>
</div>
</q-card-section>