fix:add fiedl email phone
This commit is contained in:
parent
3e568267ba
commit
5c7be2e4a8
2 changed files with 44 additions and 1 deletions
|
|
@ -47,6 +47,8 @@ const formData = reactive({
|
||||||
system: "mgt",
|
system: "mgt",
|
||||||
fileAttachments: [] as File[],
|
fileAttachments: [] as File[],
|
||||||
menu: "",
|
menu: "",
|
||||||
|
email: "",
|
||||||
|
phone: "",
|
||||||
});
|
});
|
||||||
|
|
||||||
/** ฟังก์ชันบันทึกข้อมูล */
|
/** ฟังก์ชันบันทึกข้อมูล */
|
||||||
|
|
@ -60,6 +62,8 @@ function onSubmit() {
|
||||||
system: formData.system,
|
system: formData.system,
|
||||||
menu: formData.menu,
|
menu: formData.menu,
|
||||||
org: orgName.value,
|
org: orgName.value,
|
||||||
|
email: formData.email,
|
||||||
|
phone: formData.phone,
|
||||||
};
|
};
|
||||||
|
|
||||||
const res = await http.post(config.API.orgIssues, payload);
|
const res = await http.post(config.API.orgIssues, payload);
|
||||||
|
|
@ -187,6 +191,8 @@ function onClose() {
|
||||||
formData.title = "";
|
formData.title = "";
|
||||||
formData.description = "";
|
formData.description = "";
|
||||||
formData.fileAttachments = [];
|
formData.fileAttachments = [];
|
||||||
|
formData.email = "";
|
||||||
|
formData.phone = "";
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
@ -344,6 +350,43 @@ function onClose() {
|
||||||
</template>
|
</template>
|
||||||
</q-uploader>
|
</q-uploader>
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -790,7 +790,7 @@ function onViewDetailNoti(url: string) {
|
||||||
<q-item clickable @click="modalDebug = true">
|
<q-item clickable @click="modalDebug = true">
|
||||||
<q-item-section avatar>
|
<q-item-section avatar>
|
||||||
<q-avatar
|
<q-avatar
|
||||||
color="warning"
|
color="yellow-8"
|
||||||
text-color="white"
|
text-color="white"
|
||||||
icon="mdi-bug"
|
icon="mdi-bug"
|
||||||
size="24px"
|
size="24px"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue