แก้ฟิล tittle เป็น title รอ api
This commit is contained in:
parent
0ebce96c89
commit
ca779e2a3c
2 changed files with 8 additions and 8 deletions
|
|
@ -63,11 +63,11 @@ const columns = ref<QTableProps["columns"]>([
|
|||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
},
|
||||
{
|
||||
name: "tittle",
|
||||
name: "title",
|
||||
align: "left",
|
||||
label: "หัวข้อการประชุม",
|
||||
sortable: true,
|
||||
field: "tittle",
|
||||
field: "title",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
sort: (a: string, b: string) =>
|
||||
|
|
@ -177,8 +177,8 @@ async function getList() {
|
|||
lastUpdateUserId: item.lastUpdateUserId,
|
||||
createdFullName: item.createdFullName,
|
||||
lastUpdateFullName: item.lastUpdateFullName,
|
||||
tittle: item.tittle,
|
||||
round: item.round,
|
||||
title: item.title ? item.title :'-',
|
||||
round: item.round ? item.round : '-',
|
||||
date: `${date2Thai(item.dateStart as Date, false, true)} - ${date2Thai(
|
||||
item.dateEnd as Date,
|
||||
false,
|
||||
|
|
@ -208,7 +208,7 @@ watch(
|
|||
true
|
||||
)}`,
|
||||
dateStart: item.dateStart,
|
||||
tittle: item.tittle ? item.tittle : '-',
|
||||
title: item.title ? item.title : '-',
|
||||
round: item.round ? item.round : '-',
|
||||
dateEnd: item.dateEnd,
|
||||
result: item.result,
|
||||
|
|
|
|||
|
|
@ -77,11 +77,11 @@ const columns = ref<QTableProps["columns"]>([
|
|||
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||||
},
|
||||
{
|
||||
name: "tittle",
|
||||
name: "title",
|
||||
align: "left",
|
||||
label: "หัวข้อการประชุม",
|
||||
sortable: true,
|
||||
field: "tittle",
|
||||
field: "title",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
sort: (a: string, b: string) =>
|
||||
|
|
@ -181,7 +181,7 @@ watch(
|
|||
<template>
|
||||
<q-dialog v-model="props.Modal" persistent>
|
||||
<q-card style="width: 1200px; max-width: 80vw">
|
||||
<DialogHeader tittle="เลือกการประชุม" :close="clickClose" />
|
||||
<DialogHeader :tittle="`เลือกการประชุม`" :close="clickClose" />
|
||||
<q-separator />
|
||||
<q-card-section>
|
||||
<q-input
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue