325 lines
8.7 KiB
Vue
325 lines
8.7 KiB
Vue
<script setup lang="ts">
|
|
import { ref, onMounted } from "vue";
|
|
import { useRoute } from "vue-router";
|
|
import { useQuasar } from "quasar";
|
|
import http from "@/plugins/http";
|
|
import config from "@/app.config";
|
|
|
|
/**
|
|
* importType
|
|
*/
|
|
import type { QTableProps } from "quasar";
|
|
import type { ResRecord } from "@/modules/15_development/interface/response/Main";
|
|
|
|
/**
|
|
* importStore
|
|
*/
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
|
|
/**
|
|
* usec
|
|
*/
|
|
const route = useRoute();
|
|
const $q = useQuasar();
|
|
const id = ref<string>(route.params.id.toString());
|
|
const {
|
|
success,
|
|
messageError,
|
|
showLoader,
|
|
hideLoader,
|
|
dialogConfirm,
|
|
date2Thai,
|
|
} = useCounterMixin();
|
|
|
|
/**
|
|
* prosp
|
|
*/
|
|
const isProfile = defineModel<boolean>("isProfile", { required: true });
|
|
const listPerson = defineModel<ResRecord[]>("listPerson", { required: true });
|
|
|
|
/**
|
|
* ข้อมุล Table
|
|
*/
|
|
const keyword = ref<string>("");
|
|
const rows = ref<ResRecord[]>([]);
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "type",
|
|
align: "left",
|
|
label: "ประเภท",
|
|
sortable: true,
|
|
field: "type",
|
|
headerStyle: "font-size: 14px; width: 50px;",
|
|
style: "font-size: 14px",
|
|
format: (v) => formBmaofficer(v),
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "idcard",
|
|
align: "left",
|
|
label: "เลขประจำตัวประชาชน",
|
|
sortable: true,
|
|
field: "idcard",
|
|
headerStyle: "font-size: 14px; width: 50px;",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "fullName",
|
|
align: "left",
|
|
label: "ชื่อ - นามสกุล",
|
|
sortable: true,
|
|
field: "fullName",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "position",
|
|
align: "left",
|
|
label: "ตำแหน่ง",
|
|
sortable: true,
|
|
field: "position",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "posTypeName",
|
|
align: "left",
|
|
label: "ประเภทตำแหน่ง",
|
|
sortable: true,
|
|
field: "posTypeName",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "posLevelName",
|
|
align: "left",
|
|
label: "ระดับตำแหน่ง",
|
|
sortable: true,
|
|
field: "posLevelName",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "posExecutive",
|
|
align: "left",
|
|
label: "ตำแหน่งทางการบริหาร",
|
|
sortable: true,
|
|
field: "posExecutive",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "org",
|
|
align: "left",
|
|
label: "หน่วยงานที่สังกัด",
|
|
sortable: true,
|
|
field: "org",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "dateStart",
|
|
align: "left",
|
|
label: "วันที่เริ่มต้น",
|
|
sortable: true,
|
|
field: "dateStart",
|
|
format: (v) => date2Thai(v),
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "dateEnd",
|
|
align: "left",
|
|
label: "วันที่สิ้นสุด",
|
|
sortable: true,
|
|
field: "dateEnd",
|
|
format: (v) => date2Thai(v),
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "trainingDays",
|
|
align: "left",
|
|
label: "จำนวนวันที่อบรม",
|
|
sortable: true,
|
|
field: "trainingDays",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "commandNumber",
|
|
align: "left",
|
|
label: "เลขที่คำสั่ง/เลขที่หนังสืออนุมัติ",
|
|
sortable: true,
|
|
field: "commandNumber",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
{
|
|
name: "commandDate",
|
|
align: "left",
|
|
label: "คำสั่งลงวันที่/หนังสืออนุมัติลงวันที่",
|
|
sortable: true,
|
|
field: "commandDate",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
format: (v) => date2Thai(v),
|
|
sort: (a: string, b: string) =>
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
|
},
|
|
]);
|
|
const visibleColumns = ref<string[]>([
|
|
"type",
|
|
"idcard",
|
|
"fullName",
|
|
"position",
|
|
"posTypeName",
|
|
"posLevelName",
|
|
"posExecutive",
|
|
"startDate",
|
|
"endDate",
|
|
"trainingDays",
|
|
"org",
|
|
"commandNumber",
|
|
"commandDate",
|
|
]);
|
|
const pagination = ref({
|
|
page: 1,
|
|
rowsPerPage: 10,
|
|
});
|
|
|
|
/**
|
|
* convert status to text
|
|
* @param val ประเภท
|
|
*/
|
|
function formBmaofficer(val: string) {
|
|
switch (val) {
|
|
case "OFFICER":
|
|
return "ขรก.กทม. สามัญ";
|
|
case "EMPLOYEE":
|
|
return "ลูกจ้างประจำ";
|
|
case "EMPLOYEE_TEMP":
|
|
return "ลูกจ้างชั่วคราว";
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* function เรียกข้อมูลโครงการ
|
|
*/
|
|
function fetchDataProject() {
|
|
rows.value = listPerson.value.filter(
|
|
(e: ResRecord) => e.isProfile === isProfile.value
|
|
);
|
|
}
|
|
|
|
/** ดึงข้อมูลเมื่อคอมโพเนนต์โหลดเสร็จสมบูรณ์ */
|
|
onMounted(() => {
|
|
fetchDataProject();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<q-toolbar style="padding: 0px" class="q-mb-xs">
|
|
<q-space />
|
|
<q-input dense outlined v-model="keyword" label="ค้นหา" class="q-mr-sm">
|
|
<template v-slot:append>
|
|
<q-icon name="search" />
|
|
</template>
|
|
</q-input>
|
|
|
|
<q-select
|
|
v-model="visibleColumns"
|
|
multiple
|
|
outlined
|
|
dense
|
|
options-dense
|
|
:display-value="$q.lang.table.columns"
|
|
emit-value
|
|
map-options
|
|
:options="columns"
|
|
option-value="name"
|
|
options-cover
|
|
style="min-width: 150px"
|
|
/>
|
|
</q-toolbar>
|
|
|
|
<div class="col-12">
|
|
<d-table
|
|
ref="table"
|
|
row-key="id"
|
|
flat
|
|
bordered
|
|
dense
|
|
:columns="columns"
|
|
:rows="rows"
|
|
:paging="true"
|
|
:filter="keyword"
|
|
v-model:pagination="pagination"
|
|
:rows-per-page-options="[20, 50, 100]"
|
|
:visible-columns="visibleColumns"
|
|
>
|
|
<template v-slot:header="props">
|
|
<q-tr :props="props">
|
|
<q-th auto-width />
|
|
<q-th v-for="col in props.cols" :key="col.name" :props="props">
|
|
<span class="text-weight-medium">{{ col.label }}</span>
|
|
</q-th>
|
|
</q-tr>
|
|
</template>
|
|
<template v-slot:body="props">
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
<q-td>
|
|
<q-icon
|
|
v-if="props.row.isDone"
|
|
name="mdi-check"
|
|
color="green"
|
|
size="xs"
|
|
>
|
|
<q-tooltip>ส่งไปบันทึกที่ทะเบียนประวัติแล้ว</q-tooltip>
|
|
</q-icon>
|
|
</q-td>
|
|
<q-td v-for="col in props.cols" :key="col.id">
|
|
<div v-if="col.name == 'fullName'">
|
|
{{ props.row.prefix ? props.row.prefix : ""
|
|
}}{{ props.row.firstName ? props.row.firstName : "" }}
|
|
{{ props.row.lastName ? props.row.lastName : "" }}
|
|
</div>
|
|
<div v-else-if="col.name === 'org'" class="table_ellipsis">
|
|
{{ col.value ? col.value : "-" }}
|
|
</div>
|
|
<div v-else>
|
|
{{ col.value ? col.value : "-" }}
|
|
</div>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|