no message

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-08-25 10:05:38 +07:00
parent 27813a78a6
commit 48cbe7510c
2 changed files with 13 additions and 4 deletions

View file

@ -262,7 +262,7 @@ const closeReson = () => {
{{ props.row.level }}
</q-td>
<q-td key="salary" :props="props">
{{ props.row.salary }}
{{ Number(props.row.salary).toLocaleString() }}
</q-td>
<q-td key="insigniaType" :props="props">

View file

@ -187,7 +187,7 @@ const paginationLabel = (start: number, end: number, total: number) => {
const dialogNote = ref<boolean>(false);
const showNote = (requestNote: string) => {
dialogNote.value = true;
}
};
</script>
<template>
<div class="col-12 row q-pa-md">
@ -315,7 +315,7 @@ const showNote = (requestNote: string) => {
{{ props.row.level }}
</q-td>
<q-td key="salary" :props="props">
{{ props.row.salary }}
{{ Number(props.row.salary).toLocaleString() }}
</q-td>
<q-td key="insigniaType" :props="props">
@ -328,7 +328,16 @@ const showNote = (requestNote: string) => {
{{ props.row.insigniaLevel }}
</q-td>
<q-td v-if="props.row.requestNote != ''" auto-width>
<q-btn dense size="12px" flat round color="blue" @click.stop @click="showNote(props.row.requestNote)" icon="mdi-information-outline">
<q-btn
dense
size="12px"
flat
round
color="blue"
@click.stop
@click="showNote(props.row.requestNote)"
icon="mdi-information-outline"
>
<q-tooltip>เหตผลการลบ</q-tooltip>
</q-btn>
</q-td>