551 lines
14 KiB
Vue
551 lines
14 KiB
Vue
<script setup lang="ts">
|
|
import { ref, useAttrs } from "vue";
|
|
import type { QTableProps } from "quasar";
|
|
import { useQuasar } from "quasar";
|
|
|
|
/** impotrComponents */
|
|
import DialogPopupReason from "@/components/Dialogs/PopupReason.vue";
|
|
import DialogHeader from "@/modules/07_insignia/components/DialogHeader.vue";
|
|
import cardTop from "@/modules/07_insignia/components/2_Manage/StatCard.vue";
|
|
|
|
/** impotrStores */
|
|
import { useCounterMixin } from "@/stores/mixin";
|
|
const mixin = useCounterMixin();
|
|
const { dialogMessage } = mixin;
|
|
|
|
const $q = useQuasar(); //ใช้ noti quasar
|
|
const attrs = ref<any>(useAttrs());
|
|
|
|
const modal = ref<boolean>(false);
|
|
const saveWriteNote = ref<any[]>([]);
|
|
const addNote = ref<boolean>(false);
|
|
const name = ref<string>("");
|
|
|
|
const clickNote = () => {
|
|
addNote.value = true;
|
|
};
|
|
|
|
const pagination = ref({
|
|
sortBy: "desc",
|
|
descending: false,
|
|
page: 1,
|
|
rowsPerPage: 10,
|
|
});
|
|
const stat = ref<any>({
|
|
total: 3,
|
|
sendInsig: 2,
|
|
remainInsig: 1,
|
|
});
|
|
|
|
/** ข้อมูล Table1*/
|
|
const visibleColumns = ref<string[]>([
|
|
"no",
|
|
"citizenId",
|
|
"name",
|
|
"organization",
|
|
"positionType",
|
|
"positionAdmin",
|
|
"positionLine",
|
|
"positionNum",
|
|
"status",
|
|
]);
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: true,
|
|
field: "no",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "citizenId",
|
|
align: "left",
|
|
label: "เลขประจำตัวประชาชน",
|
|
sortable: true,
|
|
field: "citizenId",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "name",
|
|
align: "left",
|
|
label: "ชื่อ - นามสกุล",
|
|
sortable: true,
|
|
field: "name",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "organization",
|
|
align: "left",
|
|
label: "สังกัด",
|
|
sortable: true,
|
|
field: "organization",
|
|
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: "positionAdmin",
|
|
align: "left",
|
|
label: "ตำแหน่งทางการบริหาร",
|
|
sortable: true,
|
|
field: "positionAdmin",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "positionLine",
|
|
align: "left",
|
|
label: "ตำแหน่งในสายงาน/ระดับ",
|
|
sortable: true,
|
|
field: "positionLine",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "positionNum",
|
|
align: "left",
|
|
label: "ตำแหน่ง เลขที่",
|
|
sortable: true,
|
|
field: "positionNum",
|
|
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 rows = ref<any[]>([]);
|
|
|
|
/** ข้อมูล Table2*/
|
|
const visibleColumns2 = ref<string[]>([
|
|
"no",
|
|
"name",
|
|
"position",
|
|
"level",
|
|
"institution",
|
|
]);
|
|
const columns2 = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: true,
|
|
field: "no",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "name",
|
|
align: "left",
|
|
label: "ชื่อ-นามสกุล",
|
|
sortable: true,
|
|
field: "name",
|
|
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: "level",
|
|
align: "left",
|
|
label: "ระดับ",
|
|
sortable: true,
|
|
field: "level",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "institution",
|
|
align: "left",
|
|
label: "สังกัด",
|
|
sortable: true,
|
|
field: "institution",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
]);
|
|
const rows2 = ref<any[]>([]);
|
|
|
|
// const clickDelete = (id: string) => {
|
|
// $q.dialog({
|
|
// title: "ยืนยันการลบข้อมูล",
|
|
// message: "ต้องการลบข้อมูลนี้ใช่หรือไม่?",
|
|
// cancel: {
|
|
// flat: true,
|
|
// color: "negative",
|
|
// },
|
|
// persistent: true,
|
|
// })
|
|
// .onOk(async () => {})
|
|
// .onCancel(() => {})
|
|
// .onDismiss(() => {});
|
|
// };
|
|
|
|
/** function closePopup*/
|
|
function clickClose() {
|
|
modal.value = false;
|
|
}
|
|
|
|
/** function openPopupAdd*/
|
|
function clickAdd() {
|
|
modal.value = true;
|
|
}
|
|
|
|
/** function บันทึกข้อมูล note*/
|
|
async function saveNote() {
|
|
if (saveWriteNote.value.length == 0) {
|
|
dialogMessage(
|
|
$q,
|
|
"ไม่สามารถบันทึกข้อมูลได้",
|
|
"กรุณาเพิ่มหมายเหตุ",
|
|
"warning",
|
|
undefined,
|
|
"orange",
|
|
undefined,
|
|
undefined,
|
|
true
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
|
|
/** ค้นหาในตาราง*/
|
|
const filterKeyword = ref<string>("");
|
|
const filterRef = ref<any>(null);
|
|
const resetFilter = () => {
|
|
filterKeyword.value = "";
|
|
filterRef.value.focus();
|
|
};
|
|
const filterKeyword2 = ref<string>("");
|
|
const filterRef2 = ref<any>(null);
|
|
const resetFilter2 = () => {
|
|
filterKeyword2.value = "";
|
|
filterRef2.value.focus();
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="toptitle text-dark col-12 row items-center">
|
|
รายชื่อที่จัดสรรเครื่องราชอิสริยาภรณ์ {{ name }}
|
|
</div>
|
|
<q-card bordered class="q-py-sm row col-12">
|
|
<div class="col-12 row bg-white">
|
|
<div class="fit q-px-md q-py-sm">
|
|
<div class="row col-12 q-col-gutter-md fit">
|
|
<cardTop
|
|
:amount="stat.total"
|
|
label="จำนวนเครื่องราช ฯ ทั้งหมด"
|
|
color="#016987"
|
|
/>
|
|
<cardTop
|
|
:amount="stat.sendInsig"
|
|
label="จำนวนเครื่องราช ฯ ที่จัดสรรให้หน่วยงานแล้ว"
|
|
color="#02A998"
|
|
/>
|
|
<cardTop
|
|
:amount="stat.remainInsig"
|
|
label="จำนวนเครื่องราช ฯ คงเหลือ"
|
|
color="#2EA0FF"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</q-card>
|
|
<q-card flat bordered class="col-12 q-mt-sm q-pa-md">
|
|
<div class="row q-col-gutter-sm">
|
|
<div class="row col-12 q-col-gutter-sm">
|
|
<div>
|
|
<q-btn
|
|
@click="clickAdd()"
|
|
size="12px"
|
|
flat
|
|
round
|
|
color="add"
|
|
icon="mdi-plus"
|
|
>
|
|
<q-tooltip>เพิ่มรายการจัดสรรเครื่องราชอิสริยาภรณ์</q-tooltip>
|
|
</q-btn>
|
|
</div>
|
|
<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">
|
|
<d-table
|
|
ref="table"
|
|
:columns="columns"
|
|
:rows="rows"
|
|
:filter="filterKeyword"
|
|
row-key="id"
|
|
flat
|
|
bordered
|
|
:paging="true"
|
|
dense
|
|
class="custom-header-table"
|
|
v-bind="attrs"
|
|
:visible-columns="visibleColumns"
|
|
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-th auto-width />
|
|
</q-tr>
|
|
</template>
|
|
<template v-slot:body="props">
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
<q-td key="no" :props="props">
|
|
{{ props.rowIndex + 1 }}
|
|
</q-td>
|
|
<q-td key="citizenId" :props="props">
|
|
{{ props.row.citizenId }}
|
|
</q-td>
|
|
<q-td key="name" :props="props">
|
|
{{ props.row.name }}
|
|
</q-td>
|
|
<q-td key="organization" :props="props">
|
|
{{ props.row.organization }}
|
|
</q-td>
|
|
<q-td key="positionType" :props="props">
|
|
{{ props.row.positionType }}
|
|
</q-td>
|
|
<q-td key="positionAdmin" :props="props">
|
|
{{ props.row.positionAdmin }}
|
|
</q-td>
|
|
<q-td key="positionLine" :props="props">
|
|
{{ props.row.positionLine }}
|
|
</q-td>
|
|
<q-td key="positionNum" :props="props">
|
|
{{ props.row.positionNum }}
|
|
</q-td>
|
|
<q-td key="status" :props="props">
|
|
{{ props.row.status }}
|
|
</q-td>
|
|
<q-td auto-width>
|
|
<q-btn
|
|
dense
|
|
size="12px"
|
|
flat
|
|
round
|
|
color="blue"
|
|
icon="mdi-alert-circle-outline"
|
|
>
|
|
<q-tooltip>หมายเหตุ</q-tooltip>
|
|
</q-btn>
|
|
</q-td>
|
|
<q-td>
|
|
<q-btn label="คืนแล้ว" @click="clickNote()" color="blue" />
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</div>
|
|
</q-card>
|
|
|
|
<q-dialog v-model="modal" persistent>
|
|
<q-card style="width: 900px; max-width: 80vw">
|
|
<q-form ref="myForm">
|
|
<DialogHeader tittle="เพิ่มรายชื่อ " :close="clickClose" />
|
|
<q-separator />
|
|
<q-card-section class="q-pa-md q-col-gutter-sm">
|
|
<q-input
|
|
class="col-12"
|
|
standout
|
|
dense
|
|
v-model="filterKeyword2"
|
|
ref="filterRef2"
|
|
outlined
|
|
debounce="300"
|
|
placeholder="ค้นหา"
|
|
>
|
|
<template v-slot:append>
|
|
<q-icon v-if="filterKeyword2 == ''" name="search" />
|
|
<q-icon
|
|
v-if="filterKeyword2 !== ''"
|
|
name="clear"
|
|
class="cursor-pointer"
|
|
@click="resetFilter2"
|
|
/>
|
|
</template>
|
|
</q-input>
|
|
<div class="col-12">
|
|
<d-table
|
|
ref="table2"
|
|
:columns="columns2"
|
|
:rows="rows2"
|
|
:filter="filterKeyword2"
|
|
row-key="Order"
|
|
flat
|
|
bordered
|
|
:paging="true"
|
|
dense
|
|
class="custom-header-table"
|
|
v-bind="attrs"
|
|
:visible-columns="visibleColumns2"
|
|
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-slot:body="props">
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
<q-td
|
|
v-for="col in props.cols"
|
|
:key="col.name"
|
|
:props="props"
|
|
>
|
|
<div v-if="col.name == 'no'">
|
|
{{ props.rowIndex + 1 }}
|
|
</div>
|
|
<div v-else>
|
|
{{ col.value }}
|
|
</div>
|
|
</q-td>
|
|
<q-td auto-width>
|
|
<q-btn
|
|
dense
|
|
class="q-px-md"
|
|
outline
|
|
color="primary"
|
|
v-close-popup
|
|
label="เพิ่ม"
|
|
>
|
|
</q-btn>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</q-card-section>
|
|
</q-form>
|
|
</q-card>
|
|
</q-dialog>
|
|
<DialogPopupReason
|
|
v-model:modal="addNote"
|
|
title="คืนเครื่องราชฯ"
|
|
label="กรอกเหตุผลที่ต้องการคืนเครื่องราชฯ"
|
|
:savaForm="saveNote"
|
|
/>
|
|
</template>
|
|
|
|
<style lang="scss" scope>
|
|
.filter-card {
|
|
background-color: #f1f1f1b0;
|
|
}
|
|
|
|
.toggle-expired-account {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
line-height: 150%;
|
|
color: #35373c;
|
|
}
|
|
|
|
.icon-color {
|
|
color: #4154b3;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|
|
</style>
|