hrms-mgt/src/modules/06_retirement/components/resign/Deceased.vue

293 lines
7.6 KiB
Vue
Raw Normal View History

<script setup lang="ts">
2023-08-08 16:50:50 +07:00
import { ref, onMounted } from "vue";
import type { QTableProps } from "quasar";
2023-08-08 16:50:50 +07:00
import { useQuasar } from "quasar";
import { useCounterMixin } from "@/stores/mixin";
import { useRouter } from "vue-router";
2023-08-08 16:50:50 +07:00
import http from "@/plugins/http";
import config from "@/app.config";
const router = useRouter();
const $q = useQuasar();
const mixin = useCounterMixin();
2023-08-22 14:02:35 +07:00
const { showLoader, hideLoader, messageError, success ,date2Thai} = mixin;
2023-08-08 16:50:50 +07:00
const rows = ref<any>([]);
const columns = ref<QTableProps["columns"]>([
{
name: "prefix",
align: "left",
label: "คำนำหน้า",
sortable: true,
field: "prefix",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "fullname",
align: "left",
label: "ชื่อ-นามสกุล",
sortable: true,
field: "fullname",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "positionType",
align: "left",
label: "ตำแหน่งประเภท",
sortable: true,
field: "positionType",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "position",
align: "left",
label: "ตำแหน่งในสายงาน",
sortable: true,
field: "position",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "positionLevel",
align: "left",
label: "ระดับ",
sortable: true,
field: "positionLevel",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "positionExecutive",
align: "left",
label: "ตำแหน่งทางการบริหาร",
sortable: true,
field: "positionExecutive",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "oc",
align: "left",
label: "สังกัด",
sortable: true,
field: "oc",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
2023-08-22 14:02:35 +07:00
{
name: "createdAt",
align: "left",
label: "วันที่ดำเนินการ",
sortable: true,
field: "createdAt",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
]);
2023-08-08 16:50:50 +07:00
const visibleColumns = ref<string[]>([
"prefix",
"fullname",
"positionType",
"position",
2023-08-08 16:50:50 +07:00
"positionLevel",
"positionExecutive",
"oc",
2023-08-22 14:02:35 +07:00
"createdAt",
2023-08-08 16:50:50 +07:00
]);
onMounted(() => {
fectListDecased();
});
const fectListDecased = async () => {
showLoader();
await http
.get(config.API.listDeceased())
.then((res) => {
console.log(res);
rows.value = res.data.result.map((e: any) => ({
personalId: e.id,
prefix: e.prefix,
fullname: e.firstName + " " + e.lastName,
positionType: e.positionType,
position: e.positionLine,
2023-08-08 16:50:50 +07:00
positionLevel: e.positionLevel,
positionExecutive: e.positionExecutive,
oc: e.organization,
2023-08-22 14:02:35 +07:00
createdAt:date2Thai(e.createdAt),
2023-08-08 16:50:50 +07:00
}));
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
};
2023-08-22 17:06:53 +07:00
2023-08-08 16:50:50 +07:00
//ค้นหา คอลัมน์ คอลัมน์ที่แสดง
const filterKeyword = ref<string>("");
const filterRef = ref<any>(null);
const resetFilter = () => {
filterKeyword.value = "";
filterRef.value.focus();
};
const nextPage = (id: string) => {
router.push("/deceased/" + id);
};
2023-08-22 17:06:53 +07:00
const pagination = ref({
sortBy: "createdAt",
descending: true,
page: 1,
rowsPerPage: 10,
});
</script>
<template>
2023-08-08 16:50:50 +07:00
<div class="toptitle text-dark col-12 row items-center">
รายการบนทกเวยนแจงการถงแกกรรม
</div>
<q-card flat bordered class="col-12 q-mt-sm">
<q-separator />
<div class="col-12 row q-pa-md">
<div class="row col-12">
<div class="row col-12 q-col-gutter-sm">
<q-space />
<q-input
class="col-xs-12 col-sm-3 col-md-2"
standout
dense
v-model="filterKeyword"
ref="filterRef"
outlined
debounce="300"
placeholder="ค้นหา"
>
<template v-slot:append>
<q-icon v-if="filterKeyword == ''" name="search" />
<q-icon
v-if="filterKeyword !== ''"
name="clear"
class="cursor-pointer"
@click="resetFilter"
/>
</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"
class="col-xs-12 col-sm-3 col-md-2"
/>
</div>
<div class="col-12 q-pt-sm">
2023-08-22 17:06:53 +07:00
<d-table
ref="table"
:columns="columns"
:rows="rows"
:filter="filterKeyword"
row-key="fullname"
flat
bordered
:paging="true"
dense
class="custom-header-table"
:visible-columns="visibleColumns"
2023-08-08 16:50:50 +07:00
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-tr>
</template>
<template v-slot:body="props">
2023-08-08 16:50:50 +07:00
<q-tr
:props="props"
class="cursor-pointer"
@click="nextPage(props.row.personalId)"
>
<!-- <q-td key="no" :props="props">
{{ props.rowIndex + 1 }}
</q-td> -->
<q-td key="prefix" :props="props">
{{ props.row.prefix }}
</q-td>
<q-td key="fullname" :props="props">
{{ props.row.fullname }}
</q-td>
<q-td key="positionType" :props="props">
{{ props.row.positionType }}
</q-td>
<q-td key="position" :props="props">
{{ props.row.position }}
</q-td>
<q-td key="positionLevel" :props="props">
{{ props.row.positionLevel }}
</q-td>
<q-td key="positionExecutive" :props="props">
{{ props.row.positionExecutive }}
</q-td>
<q-td key="oc" :props="props">
{{ props.row.oc }}
</q-td>
2023-08-22 14:02:35 +07:00
<q-td
key="createdAt"
:props="props"
@click="nextPage(props.row)"
>
{{ props.row.createdAt }}
</q-td>
</q-tr>
</template>
2023-08-22 17:06:53 +07:00
</d-table>
</div>
</div>
</div>
</q-card>
</template>
<style scoped lang="scss">
2023-08-08 16:50:50 +07:00
.custom-header-table {
max-height: 64vh;
.q-table tr:nth-child(odd) td {
background: white;
}
.q-table tr:nth-child(even) td {
background: #f8f8f8;
}
.q-table thead tr {
background: #ecebeb;
}
.q-table thead tr th {
position: sticky;
z-index: 1;
}
/* this will be the loading indicator */
.q-table thead tr:last-child th {
/* height of all previous header rows */
top: 48px;
}
.q-table thead tr:first-child th {
top: 0;
}
2023-08-08 16:50:50 +07:00
}
</style>