Compare commits

..

No commits in common. "dev" and "v1.1.3" have entirely different histories.
dev ... v1.1.3

3 changed files with 3 additions and 20 deletions

View file

@ -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 : []
);
}

View file

@ -16,7 +16,7 @@ export const useIssueStore = defineStore("issue", () => {
{ label: "Dev กำลังดำเนินการ", value: "IN_PROGRESS" },
{ label: "แก้ไขแล้ว", value: "RESOLVED" },
{ label: "Helpdesk กำลังดำเนินการ", value: "HELPDESK_IN_PROGRESS" },
{ label: "แจ้งกลับแล้ว", value: "REPLIED" },
{ label: "แจ้งกลับแล้ว", value: "REPLIED " },
{ label: "ปิดแล้ว", value: "CLOSED" },
]);

View file

@ -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))