แก้คำผิดและ label
This commit is contained in:
parent
f1c43ac97e
commit
df75935238
3 changed files with 5 additions and 5 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue