292 lines
8.9 KiB
Vue
292 lines
8.9 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted } from "vue";
|
|
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
import { useDataStore } from "@/stores/data";
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
|
|
/** import type*/
|
|
import { useQuasar, type QTableProps } from "quasar";
|
|
import type { ChangNameRows } from "@/modules/10_registry/interface/response/01_Information";
|
|
|
|
/** import component */
|
|
import SkeletonTable from "@/components/SkeletonTable.vue";
|
|
|
|
const $q = useQuasar();
|
|
const dataStore = useDataStore();
|
|
const { showLoader, hideLoader, messageError, date2Thai, onSearchDataTable } =
|
|
useCounterMixin();
|
|
|
|
const mode = ref<boolean>($q.screen.gt.xs); // true = desktop mode, false = mobile mode
|
|
const isLoading = ref<boolean>(false); // สถานะการโหลดข้อมูล
|
|
const link = ref<string>(""); // ลิงก์สำหรับดึงข้อมูลประวัติการเปลี่ยนชื่อ-นามสกุล
|
|
const rows = ref<ChangNameRows[]>([]); // ข้อมูลประวัติการเปลี่ยนชื่อ-นามสกุล
|
|
const rowsData = ref<ChangNameRows[]>([]); // ข้อมูลประวัติการเปลี่ยนชื่อ-นามสกุลสำหรับค้นหา
|
|
const filter = ref<string>(""); // ค่าที่ใช้สำหรับค้นหาในตาราง
|
|
const visibleColumns = ref<string[]>([
|
|
"prefix",
|
|
"firstName",
|
|
"lastName",
|
|
"lastUpdateFullName",
|
|
"lastUpdatedAt",
|
|
]);
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "prefix",
|
|
align: "left",
|
|
label: "คำนำหน้าชื่อ",
|
|
sortable: true,
|
|
field: "prefix",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "firstName",
|
|
align: "left",
|
|
label: "ชื่อ",
|
|
sortable: true,
|
|
field: "firstName",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "lastName",
|
|
align: "left",
|
|
label: "นามสกุล",
|
|
sortable: true,
|
|
field: "lastName",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
|
|
{
|
|
name: "lastUpdateFullName",
|
|
align: "left",
|
|
label: "ผู้ดำเนินการ",
|
|
sortable: true,
|
|
field: "lastUpdateFullName",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "lastUpdatedAt",
|
|
align: "left",
|
|
label: "วันที่แก้ไข",
|
|
sortable: true,
|
|
field: "lastUpdatedAt",
|
|
format: (v) => date2Thai(v, false, true),
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
]);
|
|
const pagination = ref({
|
|
sortBy: "lastUpdatedAt",
|
|
});
|
|
|
|
/** ฟังก์ชันดึงข้อมูลประวัติการเปลี่ยนชื่อ */
|
|
async function getData() {
|
|
isLoading.value = true;
|
|
await http
|
|
.get(config.API.dataUserChangeNameByType(link.value))
|
|
.then((res) => {
|
|
const data = res.data.result;
|
|
rows.value = data;
|
|
rowsData.value = data;
|
|
})
|
|
.catch((e) => {
|
|
messageError($q, e);
|
|
})
|
|
.finally(() => {
|
|
isLoading.value = false;
|
|
});
|
|
}
|
|
|
|
/** ฟังก์ชันค้นหาข้อมูลในตาราง */
|
|
function onSearch() {
|
|
rows.value = onSearchDataTable(
|
|
filter.value,
|
|
rowsData.value,
|
|
columns.value ? columns.value : []
|
|
);
|
|
}
|
|
|
|
/***
|
|
* ฟังก์ชันดาวน์โหลดไฟล์เอกสารหลักฐาน
|
|
* @param id รายการที่ต้องการโหลด
|
|
* @param profileId รหัสโปรไฟล์ของผู้ใช้
|
|
*/
|
|
async function onDownloadFile(id: string, profileId: string) {
|
|
showLoader();
|
|
await http
|
|
.get(
|
|
config.API.subFileByFileName(
|
|
"ทะเบียนประวัติ",
|
|
"ประวัติการเปลี่ยนชื่อ-นามสกุล",
|
|
profileId,
|
|
id,
|
|
"เอกสารหลักฐาน"
|
|
)
|
|
)
|
|
.then(async (res) => {
|
|
const data = res.data.downloadUrl;
|
|
window.open(data, "_blank");
|
|
})
|
|
.catch((err) => {
|
|
messageError($q, err);
|
|
})
|
|
.finally(() => {
|
|
hideLoader();
|
|
});
|
|
}
|
|
|
|
onMounted(async () => {
|
|
link.value = await dataStore.getProFileType();
|
|
await getData();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="col-12">
|
|
<q-toolbar class="q-px-none q-mt-md">
|
|
<span class="text-blue-6 text-weight-bold text-body1"
|
|
>ประวัติการเปลี่ยนชื่อ - นามสกุล</span
|
|
>
|
|
<q-space />
|
|
<q-input
|
|
v-if="mode"
|
|
class="inputgreen"
|
|
outlined
|
|
dense
|
|
v-model="filter"
|
|
label="ค้นหา"
|
|
style="max-width: 200px"
|
|
@keydown.enter.prevent="onSearch"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon name="search" />
|
|
</template>
|
|
</q-input>
|
|
<q-select
|
|
v-if="mode"
|
|
class="q-ml-sm"
|
|
dense
|
|
multiple
|
|
outlined
|
|
emit-value
|
|
map-options
|
|
options-dense
|
|
option-value="name"
|
|
style="min-width: 140px"
|
|
v-model="visibleColumns"
|
|
:options="columns"
|
|
:display-value="$q.lang.table.columns"
|
|
/>
|
|
</q-toolbar>
|
|
|
|
<div v-if="isLoading">
|
|
<SkeletonTable :columns="columns" />
|
|
</div>
|
|
|
|
<div class="col-12" v-else>
|
|
<d-table
|
|
flat
|
|
dense
|
|
bordered
|
|
virtual-scroll
|
|
:rows="rows.length !== 0 ? rows : []"
|
|
:columns="columns"
|
|
:grid="!mode"
|
|
:rows-per-page-options="[10, 25, 50, 100]"
|
|
:visible-columns="visibleColumns"
|
|
:virtual-scroll-sticky-size-start="48"
|
|
v-model:pagination="pagination"
|
|
>
|
|
<template v-slot:header="props">
|
|
<q-tr :props="props">
|
|
<q-th v-for="col in props.cols" :key="col.name" :props="props">
|
|
<span class="text-weight-medium">{{ col.label }}</span>
|
|
</q-th>
|
|
<q-th auto-width />
|
|
</q-tr>
|
|
</template>
|
|
|
|
<template v-if="mode" v-slot:body="props">
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
<q-td v-for="(col, index) in props.cols" :key="col.name">
|
|
<div v-if="col.name == 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
<div v-else>
|
|
{{ col.value ? col.value : "-" }}
|
|
</div>
|
|
</q-td>
|
|
<q-td auto-width>
|
|
<q-btn
|
|
color="green"
|
|
flat
|
|
dense
|
|
round
|
|
icon="mdi-file-document-outline"
|
|
@click="onDownloadFile(props.row.id, props.row.profileId)"
|
|
>
|
|
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
|
</q-btn>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
<template v-else v-slot:item="props">
|
|
<div class="q-mb-xs col-xs-12 col-sm-6 col-md-4 col-lg-3">
|
|
<q-card bordered flat>
|
|
<q-list dense class="q-mt-lg relative-position">
|
|
<q-td auto-width>
|
|
<q-btn
|
|
color="green"
|
|
flat
|
|
dense
|
|
round
|
|
class="absolute_button"
|
|
icon="mdi-file-document-outline"
|
|
@click="onDownloadFile(props.row.id, props.row.profileId)"
|
|
>
|
|
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
|
</q-btn>
|
|
</q-td>
|
|
<q-item v-for="col in props.cols" :key="col.name">
|
|
<q-item-section>
|
|
<q-item-label class="text-grey-6 text-weight-medium">{{
|
|
col.label
|
|
}}</q-item-label>
|
|
</q-item-section>
|
|
<q-item-section>
|
|
<q-item-label class="text-dark text-weight-medium">{{
|
|
col.value ? col.value : "-"
|
|
}}</q-item-label>
|
|
</q-item-section>
|
|
</q-item>
|
|
</q-list>
|
|
</q-card>
|
|
</div>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.absolute_button {
|
|
position: absolute;
|
|
right: 5px;
|
|
top: -20px;
|
|
}
|
|
</style>
|