updated req edit profile

This commit is contained in:
Warunee Tamkoo 2024-10-25 16:25:22 +07:00
parent c365327b43
commit afbbbf4af4
2 changed files with 53 additions and 75 deletions

View file

@ -73,15 +73,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",
@ -108,7 +108,7 @@ const visibleColumns = ref<string[]>([
"fullname",
"topic",
"detail",
"document",
// "document",
"status",
"remark",
]);
@ -354,7 +354,7 @@ onMounted(() => {
</q-btn>
</q-td>
<q-td v-for="col in props.cols" :key="col.name" :props="props">
<div v-if="col.name === 'document'">
<!-- <div v-if="col.name === 'document'">
<q-btn
icon="mdi-download"
round
@ -365,10 +365,10 @@ onMounted(() => {
>
<q-tooltip>ดาวนโหลดเอกสารหลกฐาน</q-tooltip>
</q-btn>
</div>
<div v-else class="table_ellipsis2">
{{ col.value ? col.value : "-" }}
</div>
</div> -->
<!-- <div v-else class="table_ellipsis2"> -->
{{ col.value ? col.value : "-" }}
<!-- </div> -->
</q-td>
</q-tr>
</template>
@ -395,8 +395,6 @@ onMounted(() => {
:fetch-data="fetchListRequset"
:request-id="requestId"
/>
</template>
<style scoped></style>