fix ถึงแก่กรรม
This commit is contained in:
parent
9312af4556
commit
a9234dac82
2 changed files with 36 additions and 4 deletions
|
|
@ -13,7 +13,14 @@ import { checkPermission } from "@/utils/permissions";
|
|||
const $q = useQuasar();
|
||||
const router = useRouter();
|
||||
const mixin = useCounterMixin();
|
||||
const { showLoader, hideLoader, messageError, date2Thai, findOrgName ,onSearchDataTable} = mixin;
|
||||
const {
|
||||
showLoader,
|
||||
hideLoader,
|
||||
messageError,
|
||||
date2Thai,
|
||||
findOrgName,
|
||||
onSearchDataTable,
|
||||
} = mixin;
|
||||
|
||||
/** คอลัมน์ */
|
||||
const rows = ref<any[]>([]);
|
||||
|
|
@ -43,7 +50,28 @@ const columns = ref<QTableProps["columns"]>([
|
|||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
format(val, row) {
|
||||
return `${row.prefix ?? ""}${row.firstName} ${row.lastName}`;
|
||||
return row.firstName
|
||||
? ` ${row.prefix ?? ""}${row.firstName} ${row.lastName}`
|
||||
: "-";
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
name: "profileType",
|
||||
align: "left",
|
||||
label: "สถานภาพ",
|
||||
sortable: true,
|
||||
field: "profileType",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
format(val, row) {
|
||||
return `${
|
||||
row.profileType === "OFFICER"
|
||||
? "ข้าราชการ กทม. สามัญ"
|
||||
: row.profileType === "EMPLOYEE"
|
||||
? "ลูกจ้างประจำ กทม."
|
||||
: "-"
|
||||
} `;
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
@ -109,6 +137,7 @@ const visibleColumns = ref<string[]>([
|
|||
"positionExecutive",
|
||||
"org",
|
||||
"createdAt",
|
||||
"profileType",
|
||||
]);
|
||||
|
||||
/**เรียกข้อมูลจาก APi */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue