ต่อ api บุคคลที่สามารถติดต่อได้
This commit is contained in:
parent
a022234412
commit
f45af7bb86
12 changed files with 449 additions and 178 deletions
|
|
@ -261,7 +261,7 @@ const visibleColumns = ref<String[]>([
|
|||
"no",
|
||||
"number",
|
||||
"position",
|
||||
"positionLevel",
|
||||
// "positionLevel",
|
||||
"registerDate",
|
||||
"examIdenNumber",
|
||||
"seatNumber",
|
||||
|
|
@ -346,15 +346,15 @@ const columns = ref<QTableProps["columns"]>([
|
|||
headerStyle: "font-size: 14px; min-width: 200px",
|
||||
style: "font-size: 14px; ",
|
||||
},
|
||||
{
|
||||
name: "positionLevel",
|
||||
align: "left",
|
||||
label: "ระดับ",
|
||||
sortable: true,
|
||||
field: "positionLevel",
|
||||
headerStyle: "font-size: 14px; min-width: 200px",
|
||||
style: "font-size: 14px; ",
|
||||
},
|
||||
// {
|
||||
// name: "positionLevel",
|
||||
// align: "left",
|
||||
// label: "ระดับ",
|
||||
// sortable: true,
|
||||
// field: "positionLevel",
|
||||
// headerStyle: "font-size: 14px; min-width: 200px",
|
||||
// style: "font-size: 14px; ",
|
||||
// },
|
||||
{
|
||||
name: "citizenId",
|
||||
align: "left",
|
||||
|
|
@ -489,7 +489,9 @@ const fetchData = async () => {
|
|||
pass: r.pass,
|
||||
email: r.email,
|
||||
status: r.status,
|
||||
position: r.positionExam == null ? "-" : r.positionExam.positionName,
|
||||
position: `${
|
||||
r.positionExam == null ? "-" : r.positionExam.positionName
|
||||
}${r.positionExam == null ? "-" : r.positionExam.positionLevelName}`,
|
||||
positionLevel:
|
||||
r.positionExam == null ? "-" : r.positionExam.positionLevelName,
|
||||
check: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue