กรรมการและการประชุม
This commit is contained in:
parent
95714e5ac2
commit
ba874d1d02
2 changed files with 29 additions and 10 deletions
|
|
@ -7,6 +7,9 @@ const props = defineProps({
|
|||
type: {
|
||||
type: String,
|
||||
},
|
||||
row: {
|
||||
type: Object,
|
||||
},
|
||||
});
|
||||
|
||||
const columnsDrictor = ref<QTableProps["columns"]>([
|
||||
|
|
@ -20,11 +23,11 @@ const columnsDrictor = ref<QTableProps["columns"]>([
|
|||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "name",
|
||||
name: "fullName",
|
||||
align: "left",
|
||||
label: "ชื่อ - นามสกุล",
|
||||
sortable: true,
|
||||
field: "name",
|
||||
field: "fullName",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
|
|
@ -85,21 +88,21 @@ const columnsMeeting = ref<QTableProps["columns"]>([
|
|||
style: "font-size: 14px",
|
||||
},
|
||||
{
|
||||
name: "results",
|
||||
name: "result",
|
||||
align: "left",
|
||||
label: "ผลการพิจารณาของคณะกรรมการประเมินผลงานแต่ละคณะ",
|
||||
sortable: true,
|
||||
field: "results",
|
||||
field: "result",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
|
||||
{
|
||||
name: "timePeriod",
|
||||
name: "duration",
|
||||
align: "left",
|
||||
label: "ระยะเวลาในการแก้ไขผลงาน",
|
||||
sortable: true,
|
||||
field: "timePeriod",
|
||||
field: "duration",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
},
|
||||
|
|
@ -119,6 +122,7 @@ onMounted(() => {
|
|||
bordered
|
||||
class="custom-header-table"
|
||||
:columns="columns"
|
||||
:rows="props.row"
|
||||
dense
|
||||
:rows-per-page-options="[10, 25, 50, 100]"
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue