แก้คำผิดและ label

This commit is contained in:
Warunee Tamkoo 2023-09-21 11:51:59 +07:00
parent f1c43ac97e
commit df75935238
3 changed files with 5 additions and 5 deletions

View file

@ -1035,7 +1035,7 @@ const closeModalEdit = () => {
<!-- popup เหตผลไมนขอ -->
<DialogPopupReason
:modal="modelPopupReject"
title="เหตุผลไม่ยื่นขอ"
title="เหตุผลการไม่ยื่นขอ"
label="หมายเหตุ"
:click-close="closemodelPopupReject"
:savaForm="savaReasonReject"
@ -1043,7 +1043,7 @@ const closeModalEdit = () => {
<!-- เหตผลทลบออก -->
<DialogPopupReason
:modal="modelPopupDelete"
title="เหตุผลที่ลบออก"
title="เหตุผลการลบออก"
label="หมายเหตุ"
:click-close="closemodelPopupDelete"
:savaForm="savaReasonDelete"

View file

@ -199,7 +199,7 @@ const dialogNote = ref<boolean>(false);
const dialogTitle = ref<string>("");
const dialogDesc = ref<string>("");
const showReson = (name: string, requestNote: string) => {
dialogTitle.value = "หมายเหตุของ" + name;
dialogTitle.value = "เหตุผลการไม่ยื่นขอ " + name;
dialogDesc.value = requestNote;
dialogNote.value = true;
};

View file

@ -199,7 +199,7 @@ const note = ref<string>("");
const noteTitle = ref<string>("");
const showNote = (row: any) => {
note.value = row.requestNote;
noteTitle.value = "เหตุผลกรลบออกของ" + " " + row.name;
noteTitle.value = "เหตุผลการลบออก " + " " + row.name;
dialogNote.value = true;
};
const closeReson = () => {
@ -386,7 +386,7 @@ const closeReson = () => {
@click.stop="showNote(props.row)"
icon="mdi-information-outline"
>
<q-tooltip>เหตผลการลบ</q-tooltip>
<q-tooltip>เหตผลการลบออก</q-tooltip>
</q-btn>
</q-td>
</q-tr>