ปรับ ลำดับ อุทธรณ์ร้องทุกข์

This commit is contained in:
setthawutttty 2023-12-18 10:19:29 +07:00
parent 4ff70cfc40
commit 5210329687

View file

@ -227,7 +227,7 @@ watch(
} }
); );
function editPage(id:string){ function editPage(id: string) {
router.push(`/appeal-complain/${id}`); router.push(`/appeal-complain/${id}`);
} }
function redirectToPageadd() { function redirectToPageadd() {
@ -402,22 +402,31 @@ onMounted(async () => {
></q-pagination> ></q-pagination>
</template> </template>
<template v-slot:header="props"> <template v-slot:header="props">
<q-tr :props="props"> <q-tr :props="props">
<q-th <q-th
v-for="col in props.cols" v-for="col in props.cols"
:key="col.name" :key="col.name"
:props="props" :props="props"
style="color: #000000; font-weight: 500" style="color: #000000; font-weight: 500"
> >
<span class="text-weight-medium">{{ col.label }}</span> <span class="text-weight-medium">{{ col.label }}</span>
</q-th> </q-th>
</q-tr> </q-tr>
</template> </template>
<template v-slot:body="props"> <template v-slot:body="props">
<q-tr :props="props" class="cursor-pointer"> <q-tr :props="props" class="cursor-pointer">
<q-td v-for="col in props.cols" :key="col.name" :props="props" @click="editPage(props.row.id)"> <q-td
v-for="col in props.cols"
:key="col.name"
:props="props"
@click="editPage(props.row.id)"
>
<div v-if="col.name == 'no'"> <div v-if="col.name == 'no'">
{{ props.rowIndex + 1 }} {{
(currentPage - 1) * Number(pagination.rowsPerPage) +
props.rowIndex +
1
}}
</div> </div>
<div> <div>
{{ col.value }} {{ col.value }}