385 lines
11 KiB
Vue
385 lines
11 KiB
Vue
<script setup lang="ts">
|
|
import { ref } from "vue";
|
|
|
|
/** importType*/
|
|
import type { QTableProps } from "quasar";
|
|
import type { ListMenu } from "@/modules/02_organizationalNew/interface/index/Main";
|
|
|
|
/** importComponents*/
|
|
import DialogFormPosotion from "@/modules/02_organizationalNew/components/DialogFormPosition.vue";
|
|
import DialogPositionDetail from "@/modules/02_organizationalNew/components/PositionDetail.vue";
|
|
|
|
/** importStore*/
|
|
import { useOrganizational } from "@/modules/02_organizationalNew/store/organizational";
|
|
|
|
const showAllData = ref<boolean>(false);
|
|
const orgLevel = defineModel<number>("orgLevel", { require: true });
|
|
const treeId = defineModel<string>("treeId", { require: true });
|
|
const stroe = useOrganizational();
|
|
const filter = ref<string>("");
|
|
const actionType = ref<string>("");
|
|
const listMenu = ref<ListMenu[]>([
|
|
{
|
|
label: "ดูรายละเอียด",
|
|
icon: "mdi-eye",
|
|
type: "VIEWDETIAL",
|
|
color: "primary",
|
|
},
|
|
{
|
|
label: "แก้ไข",
|
|
icon: "edit",
|
|
type: "EDIT",
|
|
color: "primary",
|
|
},
|
|
]);
|
|
const document = ref<any>([
|
|
{
|
|
name: "บัญชี 1",
|
|
val: "1",
|
|
},
|
|
{
|
|
name: "บัญชี 2",
|
|
val: "2",
|
|
},
|
|
{
|
|
name: "บัญชี 3",
|
|
val: "3",
|
|
},
|
|
]);
|
|
|
|
const columns = ref<QTableProps["columns"]>([
|
|
{
|
|
name: "no",
|
|
align: "left",
|
|
label: "ลำดับ",
|
|
sortable: false,
|
|
field: "no",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "noPosition",
|
|
align: "left",
|
|
label: "เลขที่ตำแหน่ง",
|
|
sortable: true,
|
|
field: "noPosition",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "namePosition",
|
|
align: "left",
|
|
label: "ตำแหน่งในสายงาน",
|
|
field: "namePosition",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "typePosition",
|
|
align: "left",
|
|
label: "ประเภทตำแหน่ง",
|
|
sortable: true,
|
|
field: "typePosition",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "levelPositoion",
|
|
align: "left",
|
|
label: "ระดับตำแหน่ง",
|
|
sortable: true,
|
|
field: "levelPositoion",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
{
|
|
name: "isStatus",
|
|
align: "left",
|
|
label: "มีคนครองหรือไม่",
|
|
sortable: true,
|
|
field: "isStatus",
|
|
headerStyle: "font-size: 14px",
|
|
style: "font-size: 14px",
|
|
},
|
|
]);
|
|
const rows = ref<any>([
|
|
{
|
|
noPosition: "สกง.1",
|
|
namePosition: "นักทรัพยากรบุคคล",
|
|
typePosition: "ทั่วไป",
|
|
levelPositoion: "ชำนาญการ / ?",
|
|
isStatus: "ไม่มี",
|
|
},
|
|
{
|
|
noPosition: "สกง.2",
|
|
namePosition: "นักทรัพยากรบุคคล",
|
|
typePosition: "ทั่วไป",
|
|
levelPositoion: "ชำนาญการ / ?",
|
|
isStatus: "ไม่มี",
|
|
},
|
|
]);
|
|
|
|
const dialogPosition = ref<boolean>(false);
|
|
function onClickPosition(type: string) {
|
|
actionType.value = type;
|
|
dialogPosition.value = !dialogPosition.value;
|
|
}
|
|
|
|
const dialogDetail = ref<boolean>(false);
|
|
function onClickViewDetail() {
|
|
dialogDetail.value = !dialogDetail.value;
|
|
}
|
|
</script>
|
|
<template>
|
|
<!-- TOOLBAR -->
|
|
<div class="col-12">
|
|
<q-toolbar style="padding: 0">
|
|
<div v-if="stroe.typeOrganizational === 'draft'">
|
|
<q-btn
|
|
flat
|
|
round
|
|
dense
|
|
color="primary"
|
|
icon="add"
|
|
@click="onClickPosition('ADD')"
|
|
>
|
|
<q-tooltip>เพิ่มตำแหน่ง</q-tooltip></q-btn
|
|
>
|
|
<q-btn flat round dense color="blue" icon="filter_list">
|
|
<q-tooltip>จัดลำดับ</q-tooltip>
|
|
</q-btn>
|
|
</div>
|
|
|
|
<q-btn flat round dense color="blue-10" icon="save_alt">
|
|
<q-menu>
|
|
<q-list
|
|
dense
|
|
style="min-width: 100px"
|
|
v-for="(item, index) in document"
|
|
:key="index"
|
|
>
|
|
<q-item clickable v-close-popup>
|
|
<q-item-section>{{ item.name }}</q-item-section>
|
|
</q-item>
|
|
</q-list>
|
|
</q-menu>
|
|
<q-tooltip>ดาวน์โหลด</q-tooltip>
|
|
</q-btn>
|
|
<q-space />
|
|
<div class="row q-gutter-md">
|
|
<div>
|
|
<q-checkbox
|
|
keep-color
|
|
v-model="showAllData"
|
|
label="แสดงตำแหน่งทั้งหมด"
|
|
color="primary"
|
|
>
|
|
<q-tooltip
|
|
>แสดงตำแหน่งทั้งหมดภายใต้หน่วยงาน/ส่วนราชการที่เลือก</q-tooltip
|
|
>
|
|
</q-checkbox>
|
|
</div>
|
|
<div><q-input outlined dense v-model="filter" label="ค้นหา" /></div>
|
|
</div>
|
|
</q-toolbar>
|
|
</div>
|
|
|
|
<!-- TABLE -->
|
|
<div class="col-12">
|
|
<d-table
|
|
ref="table"
|
|
:columns="columns"
|
|
:rows="rows"
|
|
row-key="noPosition"
|
|
flat
|
|
bordered
|
|
:paging="true"
|
|
dense
|
|
class="custom-header-table"
|
|
:rows-per-page-options="[10, 25, 50, 100]"
|
|
:filter="filter"
|
|
>
|
|
<template v-slot:header="props">
|
|
<q-tr :props="props">
|
|
<q-th auto-width></q-th>
|
|
<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>
|
|
</q-tr>
|
|
</template>
|
|
<template v-slot:body="props">
|
|
<q-tr :props="props" class="cursor-pointer">
|
|
<q-td>
|
|
<q-btn
|
|
size="sm"
|
|
color="primary"
|
|
round
|
|
dense
|
|
@click="props.expand = !props.expand"
|
|
:icon="props.expand ? 'remove' : 'add'"
|
|
/>
|
|
</q-td>
|
|
<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>
|
|
<q-btn
|
|
flat
|
|
dense
|
|
icon="mdi-dots-vertical"
|
|
class="q-pa-none q-ml-xs"
|
|
color="grey-13"
|
|
>
|
|
<q-menu>
|
|
<q-list
|
|
dense
|
|
style="min-width: 200px"
|
|
v-for="(item, index) in listMenu"
|
|
:key="index"
|
|
>
|
|
<q-item
|
|
clickable
|
|
v-close-popup
|
|
@click="
|
|
item.type === 'VIEWDETIAL'
|
|
? onClickViewDetail()
|
|
: item.type === 'EDIT'
|
|
? onClickPosition('EDIT')
|
|
: null
|
|
"
|
|
>
|
|
<q-item-section avatar>
|
|
<q-icon :color="item.color" :name="item.icon" />
|
|
</q-item-section>
|
|
<q-item-section>{{ item.label }}</q-item-section>
|
|
</q-item>
|
|
</q-list>
|
|
</q-menu>
|
|
</q-btn>
|
|
</q-td>
|
|
</q-tr>
|
|
|
|
<q-tr v-show="props.expand" :props="props">
|
|
<q-td colspan="100%">
|
|
<div class="text-left q-pa-md">
|
|
<div class="col-12">
|
|
<d-table
|
|
ref="table"
|
|
:columns="columns"
|
|
:rows="rows"
|
|
row-key="noPosition"
|
|
flat
|
|
bordered
|
|
:paging="true"
|
|
dense
|
|
class="custom-header-table"
|
|
:rows-per-page-options="[10, 25, 50, 100]"
|
|
:filter="filter"
|
|
>
|
|
<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>
|
|
</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>
|
|
<q-btn
|
|
flat
|
|
dense
|
|
icon="mdi-dots-vertical"
|
|
class="q-pa-none q-ml-xs"
|
|
color="grey-13"
|
|
>
|
|
<q-menu>
|
|
<q-list
|
|
dense
|
|
style="min-width: 200px"
|
|
v-for="(item, index) in listMenu"
|
|
:key="index"
|
|
>
|
|
<q-item
|
|
clickable
|
|
v-close-popup
|
|
@click="
|
|
item.type === 'VIEWDETIAL'
|
|
? onClickViewDetail()
|
|
: null
|
|
"
|
|
>
|
|
<q-item-section avatar>
|
|
<q-icon
|
|
:color="item.color"
|
|
:name="item.icon"
|
|
/>
|
|
</q-item-section>
|
|
<q-item-section>{{
|
|
item.label
|
|
}}</q-item-section>
|
|
</q-item>
|
|
</q-list>
|
|
</q-menu>
|
|
</q-btn>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
</d-table>
|
|
</div>
|
|
</div>
|
|
</q-td>
|
|
</q-tr>
|
|
</template>
|
|
<!-- <template v-slot:pagination="scope">
|
|
<q-pagination
|
|
v-model="currentPage"
|
|
active-color="primary"
|
|
color="dark"
|
|
:max="Number(props.maxPage)"
|
|
size="sm"
|
|
boundary-links
|
|
direction-links
|
|
></q-pagination>
|
|
</template> -->
|
|
</d-table>
|
|
</div>
|
|
|
|
<DialogFormPosotion
|
|
:modal="dialogPosition"
|
|
:close="onClickPosition"
|
|
:orgLevel="orgLevel"
|
|
:treeId="treeId"
|
|
:actionType="actionType"
|
|
/>
|
|
|
|
<!-- รายละเอียดตำแหน่ง -->
|
|
<DialogPositionDetail v-model:position-detail="dialogDetail" />
|
|
</template>
|
|
|
|
<style scoped></style>
|