fix:add fiedl email phone
This commit is contained in:
parent
ac6c1583ee
commit
d7c96afe29
2 changed files with 43 additions and 1 deletions
|
|
@ -37,6 +37,8 @@ const formData = reactive({
|
||||||
system: 'checkin',
|
system: 'checkin',
|
||||||
fileAttachments: [] as File[],
|
fileAttachments: [] as File[],
|
||||||
menu: '',
|
menu: '',
|
||||||
|
email: '',
|
||||||
|
phone: '',
|
||||||
})
|
})
|
||||||
|
|
||||||
/** ฟังก์ชันบันทึกข้อมูล */
|
/** ฟังก์ชันบันทึกข้อมูล */
|
||||||
|
|
@ -50,6 +52,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)
|
||||||
|
|
@ -164,6 +168,8 @@ function onClose() {
|
||||||
formData.title = ''
|
formData.title = ''
|
||||||
formData.description = ''
|
formData.description = ''
|
||||||
formData.fileAttachments = []
|
formData.fileAttachments = []
|
||||||
|
formData.email = ''
|
||||||
|
formData.phone = ''
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
@ -297,6 +303,42 @@ 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>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -501,7 +501,7 @@ onMounted(async () => {
|
||||||
<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