updated req edit profile

This commit is contained in:
Warunee Tamkoo 2024-10-25 15:49:07 +07:00
parent 7ba8a0feea
commit c8d1ca89ca
2 changed files with 52 additions and 70 deletions

View file

@ -81,15 +81,15 @@ const columns = ref<QTableProps["columns"]>([
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "document",
align: "center",
label: "หลักฐานอ้างอิง",
sortable: false,
field: "document",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
// {
// name: "document",
// align: "center",
// label: "",
// sortable: false,
// field: "document",
// headerStyle: "font-size: 14px",
// style: "font-size: 14px",
// },
{
name: "status",
align: "left",
@ -115,7 +115,7 @@ const visibleColumns = ref<string[]>([
"no",
"topic",
"detail",
"document",
// "document",
"status",
"remark",
]);
@ -405,7 +405,7 @@ onMounted(() => {
<div v-if="col.name == 'no'">
{{ props.rowIndex + 1 }}
</div>
<div v-else-if="col.name === 'document'">
<!-- <div v-else-if="col.name === 'document'">
<q-btn
icon="mdi-download"
round
@ -417,7 +417,7 @@ onMounted(() => {
>
<q-tooltip>หลกฐานอางอ</q-tooltip>
</q-btn>
</div>
</div> -->
<div v-else class="table_ellipsis2">
{{ col.value ? col.value : "-" }}
</div>