Compare commits
No commits in common. "dev" and "v1.1.4" have entirely different histories.
2 changed files with 2 additions and 19 deletions
|
|
@ -37,7 +37,6 @@ const visibleColumns = ref<string[]>([
|
|||
"amount",
|
||||
"createdAt",
|
||||
"createdFullName",
|
||||
"accessType",
|
||||
]);
|
||||
const columns = ref<QTableProps["columns"]>([
|
||||
{
|
||||
|
|
@ -63,22 +62,6 @@ const columns = ref<QTableProps["columns"]>([
|
|||
.join("");
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "accessType",
|
||||
align: "left",
|
||||
label: "การเข้าถึง",
|
||||
sortable: true,
|
||||
field: "accessType",
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
format(val, row) {
|
||||
if (val === "ALL") {
|
||||
return `ทั้งหมด`;
|
||||
} else {
|
||||
return `${val} (${row.orgName})`;
|
||||
}
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "amount",
|
||||
align: "left",
|
||||
|
|
@ -164,7 +147,7 @@ function serchDataTable() {
|
|||
rows.value = onSearchDataTable(
|
||||
keyword.value,
|
||||
rowsMain.value,
|
||||
columns.value ? columns.value : [],
|
||||
columns.value ? columns.value : []
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -357,7 +357,7 @@ async function fetchKeycloakPosition() {
|
|||
});
|
||||
}
|
||||
|
||||
const profileImg = ref<string>(avatar);
|
||||
const profileImg = ref<string>("");
|
||||
async function getImg(id: string, pathName: string) {
|
||||
await http
|
||||
.get(config.API.fileByFile("ทะเบียนประวัติ", "โปรไฟล์", id, pathName))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue