no message
This commit is contained in:
parent
27813a78a6
commit
48cbe7510c
2 changed files with 13 additions and 4 deletions
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue