UI รายชื่อกรรมการและการประชุม

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-12-18 15:30:14 +07:00
parent bc9c65488c
commit fbbd68570a
7 changed files with 432 additions and 78 deletions

View file

@ -10,26 +10,27 @@ const props = defineProps({
<template>
<q-table
ref="table"
:columns="props.columns"
row-key="name"
flat
bordered
dense
class="custom-header-table"
style="width: 625px"
:columns="props.columns"
dense
:rows-per-page-options="[10, 25, 50, 100]"
style="width: 625px"
>
<!-- <template v-slot:header="props">
<template v-slot:header="props">
<q-tr :props="props">
<q-th v-for="col in props.cols" :key="col.name" :props="props">
<span class="text-weight-medium" v-html="col.label" />
</q-th>
<q-th auto-width />
</q-tr>
</template> -->
</template>
<!-- <template v-slot:body="props">
<q-tr :props="props" class="cursor-pointer">
<q-td v-for="col in props.cols" :key="col.name" :props="props">
<div v-if="col.name == 'no'">
{{ props.rowIndex + 1 }}
</div>
<div>
{{ col.value }}
</div>