2023-07-28 08:34:52 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { ref, computed } from "vue";
|
|
|
|
|
import type { QTableProps } from "quasar";
|
|
|
|
|
import { useQuasar } from "quasar";
|
|
|
|
|
import { useRouter } from "vue-router";
|
|
|
|
|
import DialogFooter from "@/modules/05_placement/components/Receive/DialogFooter.vue";
|
|
|
|
|
import DialogHeader from "@/modules/05_placement/components/Receive/DialogHeader.vue";
|
|
|
|
|
import DialogOrgTree from "@/modules/05_placement/components/Receive/receiveModal.vue";
|
|
|
|
|
|
|
|
|
|
const selected = ref([]);
|
|
|
|
|
const checkSelected = computed(() => {
|
|
|
|
|
if (selected.value.length === 0) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
const clickClose = () => {
|
|
|
|
|
modal.value = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const $q = useQuasar();
|
|
|
|
|
const modal = ref<boolean>(false);
|
|
|
|
|
const popup = () => {
|
|
|
|
|
modal.value = true;
|
|
|
|
|
};
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
|
|
const modalTree = ref<boolean>(false);
|
|
|
|
|
const personal = ref<any[]>([]);
|
|
|
|
|
const personalId = ref<string>("");
|
|
|
|
|
const visibleColumns = ref<string[]>([
|
|
|
|
|
"no",
|
|
|
|
|
"fullname",
|
|
|
|
|
"position",
|
|
|
|
|
"positionLevel",
|
|
|
|
|
"oc",
|
|
|
|
|
"agency",
|
|
|
|
|
"status",
|
|
|
|
|
]);
|
|
|
|
|
const visibleColumns2 = ref<string[]>([
|
|
|
|
|
"no",
|
|
|
|
|
"fullname",
|
|
|
|
|
"position",
|
|
|
|
|
"positionLevel",
|
|
|
|
|
"oc",
|
|
|
|
|
"agency",
|
|
|
|
|
"status",
|
|
|
|
|
]); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง
|
|
|
|
|
const filterKeyword = ref<string>("");
|
|
|
|
|
const filterKeyword2 = ref<string>("");
|
|
|
|
|
const filterRef = ref<any>(null);
|
|
|
|
|
const resetFilter = () => {
|
|
|
|
|
filterKeyword.value = "";
|
|
|
|
|
filterKeyword2.value = "";
|
|
|
|
|
filterRef.value.focus();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// const nextPage = (id:string) => {
|
|
|
|
|
// router.push("/retirement/resign/"+id);
|
|
|
|
|
// };
|
|
|
|
|
const rows = ref<any>([
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-add6-47b0-8a13-5f45d106e8d1",
|
|
|
|
|
fullname: "นางสาวอย พชช",
|
|
|
|
|
position: "นักบริหาร",
|
|
|
|
|
positionLevel: "ต้น",
|
|
|
|
|
oc: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
|
|
|
|
agency: "กลุ่มงานกุมารเวชกรรม",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-adf2-4842-8056-1abb1539356e",
|
|
|
|
|
fullname: "นางสาววญ สพ",
|
|
|
|
|
position: "นักจัดการงานทั่วไป",
|
|
|
|
|
positionLevel: "ปฏิบัติการ",
|
|
|
|
|
oc: "กลุ่มงานช่วยนักบริหาร",
|
|
|
|
|
agency: "กลุ่มงานข้อมูลเมือง",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-ae3d-4b8c-8cf0-b86b5a2ed8bb",
|
|
|
|
|
fullname: "นางสาววญ สพ",
|
|
|
|
|
position: "นักจัดการงานทั่วไป",
|
|
|
|
|
positionLevel: "ปฏิบัติการ",
|
|
|
|
|
oc: "กลุ่มงานช่วยนักบริหาร",
|
|
|
|
|
agency: "กลุ่มงานข้อมูลเมือง",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-afde-4ed4-8bc6-f0ad83e61c4d",
|
|
|
|
|
fullname: "นางสาววญ สพ",
|
|
|
|
|
position: "นักจัดการงานทั่วไป",
|
|
|
|
|
positionLevel: "ปฏิบัติการ",
|
|
|
|
|
oc: "กลุ่มงานช่วยนักบริหาร",
|
|
|
|
|
agency: "กลุ่มงานข้อมูลเมือง",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-b24e-45d7-8a65-3f28ef4948a4",
|
|
|
|
|
fullname: "นางสาววญ สพ",
|
|
|
|
|
position: "นักจัดการงานทั่วไป",
|
|
|
|
|
positionLevel: "ปฏิบัติการ",
|
|
|
|
|
oc: "กลุ่มงานช่วยนักบริหาร",
|
|
|
|
|
agency: "กลุ่มงานข้อมูลเมือง",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
const rows2 = ref<any>([
|
|
|
|
|
{
|
|
|
|
|
personalId: "0a846508-4932-40de-9a9e-5b519492217c",
|
|
|
|
|
fullname: "นางสาวอย พชช",
|
|
|
|
|
position: "นักบริหาร",
|
|
|
|
|
positionLevel: "ต้น",
|
|
|
|
|
oc: "สำนักงานคณะกรรมการข้าราชการกรุงเทพมหานคร",
|
|
|
|
|
agency: "กลุ่มงานกุมารเวชกรรม",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-add6-47b0-8a13-5f45d106e8d1",
|
|
|
|
|
fullname: "นางสาววญ สพ",
|
|
|
|
|
position: "นักจัดการงานทั่วไป",
|
|
|
|
|
positionLevel: "ปฏิบัติการ",
|
|
|
|
|
oc: "กลุ่มงานช่วยนักบริหาร",
|
|
|
|
|
agency: "กลุ่มงานข้อมูลเมือง",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-adf2-4842-8056-1abb1539356e",
|
|
|
|
|
fullname: "นางสาววญ สพ",
|
|
|
|
|
position: "นักจัดการงานทั่วไป",
|
|
|
|
|
positionLevel: "ปฏิบัติการ",
|
|
|
|
|
oc: "กลุ่มงานช่วยนักบริหาร",
|
|
|
|
|
agency: "กลุ่มงานข้อมูลเมือง",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-adff-47b0-8762-41cd5c991001",
|
|
|
|
|
fullname: "นางสาววญ สพ",
|
|
|
|
|
position: "นักจัดการงานทั่วไป",
|
|
|
|
|
positionLevel: "ปฏิบัติการ",
|
|
|
|
|
oc: "กลุ่มงานช่วยนักบริหาร",
|
|
|
|
|
agency: "กลุ่มงานข้อมูลเมือง",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
personalId: "08db721d-ae22-424d-8f4a-87ba30cc3ee7",
|
|
|
|
|
fullname: "นางสาววญ สพ",
|
|
|
|
|
position: "นักจัดการงานทั่วไป",
|
|
|
|
|
positionLevel: "ปฏิบัติการ",
|
|
|
|
|
oc: "กลุ่มงานช่วยนักบริหาร",
|
|
|
|
|
agency: "กลุ่มงานข้อมูลเมือง",
|
|
|
|
|
status: "รออนุมัติ",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
const columns = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "no",
|
|
|
|
|
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: "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: "oc",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สังกัด",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "oc",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "agency",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "หน่วยงานที่รับโอน",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "agency",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "status",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สถานะ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "status",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
|
|
|
{
|
|
|
|
|
name: "no",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "ลำดับ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "no",
|
|
|
|
|
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: "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: "oc",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สังกัด",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "oc",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "agency",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "หน่วยงานที่ขอโอนไป",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "agency",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: "status",
|
|
|
|
|
align: "left",
|
|
|
|
|
label: "สถานะ",
|
|
|
|
|
sortable: true,
|
|
|
|
|
field: "status",
|
|
|
|
|
headerStyle: "font-size: 14px",
|
|
|
|
|
style: "font-size: 14px",
|
|
|
|
|
},
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
const openModalTree = (pid: string) => {
|
|
|
|
|
modalTree.value = true;
|
|
|
|
|
personalId.value = pid;
|
|
|
|
|
personal.value = [];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const closeModalTree = async () => {
|
|
|
|
|
// await getTable();
|
|
|
|
|
modalTree.value = false;
|
|
|
|
|
};
|
2023-08-03 14:49:17 +07:00
|
|
|
|
|
|
|
|
const nextPage = (id: string) => {
|
|
|
|
|
router.push(`/receive/${id}`);
|
|
|
|
|
};
|
2023-07-28 08:34:52 +07:00
|
|
|
</script>
|
|
|
|
|
<template>
|
|
|
|
|
<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="row q-pa-md">
|
|
|
|
|
<div class="col-12">
|
|
|
|
|
<div class="row col-12">
|
|
|
|
|
<q-btn
|
|
|
|
|
@click="popup()"
|
|
|
|
|
size="14px"
|
|
|
|
|
flat
|
|
|
|
|
round
|
|
|
|
|
color="add"
|
|
|
|
|
icon="mdi-account-arrow-right"
|
|
|
|
|
>
|
|
|
|
|
<q-tooltip>ส่งไปออกคำสั่งรับโอน</q-tooltip>
|
|
|
|
|
</q-btn>
|
|
|
|
|
|
|
|
|
|
<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 q-ml-sm"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-12 q-pt-sm">
|
|
|
|
|
<d-table
|
|
|
|
|
:columns="columns"
|
|
|
|
|
:rows="rows"
|
|
|
|
|
:filter="filterKeyword"
|
|
|
|
|
row-key="fullname"
|
|
|
|
|
:visible-columns="visibleColumns"
|
|
|
|
|
>
|
|
|
|
|
<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">
|
|
|
|
|
<q-tr :props="props" class="cursor-pointer">
|
2023-08-03 14:49:17 +07:00
|
|
|
<q-td
|
|
|
|
|
key="no"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="nextPage(props.row.personalId)"
|
|
|
|
|
>
|
2023-07-28 08:34:52 +07:00
|
|
|
{{ props.rowIndex + 1 }}
|
|
|
|
|
</q-td>
|
2023-08-03 14:49:17 +07:00
|
|
|
<q-td
|
|
|
|
|
key="fullname"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="nextPage(props.row.personalId)"
|
|
|
|
|
>
|
2023-07-28 08:34:52 +07:00
|
|
|
{{ props.row.fullname }}
|
|
|
|
|
</q-td>
|
2023-08-03 14:49:17 +07:00
|
|
|
<q-td
|
|
|
|
|
key="position"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="nextPage(props.row.personalId)"
|
|
|
|
|
>
|
2023-07-28 08:34:52 +07:00
|
|
|
{{ props.row.position }}
|
|
|
|
|
</q-td>
|
2023-08-03 14:49:17 +07:00
|
|
|
<q-td
|
|
|
|
|
key="positionLevel"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="nextPage(props.row.personalId)"
|
|
|
|
|
>
|
2023-07-28 08:34:52 +07:00
|
|
|
{{ props.row.positionLevel }}
|
|
|
|
|
</q-td>
|
2023-08-03 14:49:17 +07:00
|
|
|
<q-td
|
|
|
|
|
key="oc"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="nextPage(props.row.personalId)"
|
|
|
|
|
>
|
2023-07-28 08:34:52 +07:00
|
|
|
{{ props.row.oc }}
|
|
|
|
|
</q-td>
|
2023-08-03 14:49:17 +07:00
|
|
|
<q-td
|
|
|
|
|
key="agency"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="nextPage(props.row.personalId)"
|
|
|
|
|
>
|
2023-07-28 08:34:52 +07:00
|
|
|
{{ props.row.agency }}
|
|
|
|
|
</q-td>
|
2023-08-03 14:49:17 +07:00
|
|
|
<q-td
|
|
|
|
|
key="status"
|
|
|
|
|
:props="props"
|
|
|
|
|
@click="nextPage(props.row.personalId)"
|
|
|
|
|
>
|
2023-07-28 08:34:52 +07:00
|
|
|
{{ props.row.status }}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td auto-width>
|
|
|
|
|
<q-btn
|
|
|
|
|
icon="mdi-dots-vertical"
|
|
|
|
|
size="12px"
|
|
|
|
|
color="grey-7"
|
|
|
|
|
flat
|
|
|
|
|
round
|
|
|
|
|
dense
|
|
|
|
|
>
|
|
|
|
|
<q-menu
|
|
|
|
|
transition-show="jump-down"
|
|
|
|
|
transition-hide="jump-up"
|
|
|
|
|
>
|
|
|
|
|
<q-list dense style="min-width: 100px">
|
|
|
|
|
<q-item
|
|
|
|
|
clickable
|
|
|
|
|
v-close-popup
|
|
|
|
|
@click="openModalTree(props.row.personalId)"
|
|
|
|
|
>
|
|
|
|
|
<q-item-section
|
|
|
|
|
style="min-width: 0px"
|
|
|
|
|
avatar
|
|
|
|
|
class="q-py-sm"
|
|
|
|
|
>
|
|
|
|
|
<q-icon
|
|
|
|
|
color="primary"
|
|
|
|
|
size="xs"
|
|
|
|
|
name="mdi-bookmark-outline"
|
|
|
|
|
/>
|
|
|
|
|
</q-item-section>
|
|
|
|
|
<q-item-section
|
|
|
|
|
>เลือกหน่วยงานที่รับโอน</q-item-section
|
|
|
|
|
>
|
|
|
|
|
</q-item>
|
|
|
|
|
</q-list>
|
|
|
|
|
</q-menu>
|
|
|
|
|
</q-btn>
|
|
|
|
|
</q-td>
|
|
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
</d-table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</q-card>
|
|
|
|
|
|
|
|
|
|
<q-dialog v-model="modal">
|
|
|
|
|
<q-card style="width: 1200px; max-width: 80vw">
|
|
|
|
|
<DialogHeader title="ส่งไปออกคำสั่งรับโอน" :close="clickClose" />
|
|
|
|
|
<q-separator />
|
|
|
|
|
<q-card-section class="q-pt-none">
|
|
|
|
|
<div class="row justify-end">
|
|
|
|
|
<div class="col-5">
|
|
|
|
|
<q-toolbar style="padding: 0">
|
|
|
|
|
<q-input
|
|
|
|
|
borderless
|
|
|
|
|
outlined
|
|
|
|
|
dense
|
|
|
|
|
debounce="300"
|
|
|
|
|
v-model="filterKeyword2"
|
|
|
|
|
placeholder="ค้นหา"
|
|
|
|
|
style="width: 850px; max-width: auto"
|
|
|
|
|
>
|
|
|
|
|
<template v-slot:append>
|
|
|
|
|
<q-icon v-if="filterKeyword2 == ''" name="search" />
|
|
|
|
|
<q-icon
|
|
|
|
|
v-if="filterKeyword2 !== ''"
|
|
|
|
|
name="clear"
|
|
|
|
|
class="cursor-pointer"
|
|
|
|
|
@click="resetFilter"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
</q-input>
|
|
|
|
|
<q-select
|
|
|
|
|
v-model="visibleColumns2"
|
|
|
|
|
multiple
|
|
|
|
|
outlined
|
|
|
|
|
dense
|
|
|
|
|
options-dense
|
|
|
|
|
:display-value="$q.lang.table.columns"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
:options="columns2"
|
|
|
|
|
option-value="name"
|
|
|
|
|
options-cover
|
|
|
|
|
style="min-width: 150px"
|
|
|
|
|
class="gt-xs q-ml-sm"
|
|
|
|
|
/>
|
|
|
|
|
</q-toolbar>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<d-table
|
|
|
|
|
:columns="columns2"
|
|
|
|
|
:rows="rows2"
|
|
|
|
|
:filter="filterKeyword2"
|
|
|
|
|
row-key="personalId"
|
|
|
|
|
flat
|
|
|
|
|
:visible-columns="visibleColumns2"
|
|
|
|
|
selection="multiple"
|
|
|
|
|
v-model:selected="selected"
|
|
|
|
|
>
|
|
|
|
|
<template v-slot:header-selection="scope">
|
|
|
|
|
<q-checkbox
|
|
|
|
|
keep-color
|
|
|
|
|
color="primary"
|
|
|
|
|
dense
|
|
|
|
|
v-model="scope.selected"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
<!-- <template v-slot:body-selection="scope">
|
|
|
|
|
<q-checkbox
|
|
|
|
|
keep-color
|
|
|
|
|
color="primary"
|
|
|
|
|
dense
|
|
|
|
|
v-model="scope.selected"
|
|
|
|
|
/>
|
|
|
|
|
</template> -->
|
|
|
|
|
<template v-slot:body="props">
|
|
|
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
|
|
|
<q-td>
|
|
|
|
|
<q-checkbox
|
|
|
|
|
keep-color
|
|
|
|
|
color="primary"
|
|
|
|
|
dense
|
|
|
|
|
v-model="props.selected"
|
|
|
|
|
/>
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td key="no" :props="props">
|
|
|
|
|
{{ props.rowIndex + 1 }}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td key="fullname" :props="props">
|
|
|
|
|
{{ props.row.fullname }}
|
|
|
|
|
</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="oc" :props="props">
|
|
|
|
|
{{ props.row.oc }}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td key="agency" :props="props">
|
|
|
|
|
{{ props.row.agency }}
|
|
|
|
|
</q-td>
|
|
|
|
|
<q-td key="status" :props="props">
|
|
|
|
|
{{ props.row.status }}
|
|
|
|
|
</q-td>
|
|
|
|
|
</q-tr>
|
|
|
|
|
</template>
|
|
|
|
|
</d-table>
|
|
|
|
|
</q-card-section>
|
|
|
|
|
|
|
|
|
|
<q-card-actions align="right" class="bg-white text-teal">
|
|
|
|
|
<q-btn
|
|
|
|
|
label="บันทึก"
|
|
|
|
|
@click=""
|
|
|
|
|
:disable="checkSelected"
|
|
|
|
|
color="public"
|
|
|
|
|
/>
|
|
|
|
|
</q-card-actions>
|
|
|
|
|
</q-card>
|
|
|
|
|
</q-dialog>
|
|
|
|
|
|
|
|
|
|
<DialogOrgTree
|
|
|
|
|
v-model:modal="modalTree"
|
|
|
|
|
:personalId="personalId"
|
|
|
|
|
:close="closeModalTree"
|
|
|
|
|
:personal="personal"
|
|
|
|
|
/>
|
|
|
|
|
</template>
|
|
|
|
|
<style scoped lang="scss"></style>
|