ปรับ UI คนครอง
This commit is contained in:
parent
0b0ef1d1ff
commit
16fd3dfb0c
1 changed files with 261 additions and 213 deletions
|
|
@ -1,8 +1,10 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, reactive, watch } from "vue";
|
import { ref, reactive, watch } from "vue";
|
||||||
import { useQuasar } from "quasar";
|
import { useQuasar } from "quasar";
|
||||||
|
|
||||||
import http from "@/plugins/http";
|
import http from "@/plugins/http";
|
||||||
import config from "@/app.config";
|
import config from "@/app.config";
|
||||||
|
|
||||||
import type { QTableProps } from "quasar";
|
import type { QTableProps } from "quasar";
|
||||||
import { useCounterMixin } from "@/stores/mixin";
|
import { useCounterMixin } from "@/stores/mixin";
|
||||||
import { useOrganizational } from "@/modules/02_organizationalNew/store/organizational";
|
import { useOrganizational } from "@/modules/02_organizationalNew/store/organizational";
|
||||||
|
|
@ -19,10 +21,12 @@ interface FormDetailPosition {
|
||||||
positionType: string;
|
positionType: string;
|
||||||
positionLevel: string;
|
positionLevel: string;
|
||||||
personal: string;
|
personal: string;
|
||||||
|
position: string;
|
||||||
status: string;
|
status: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SeaechResult {
|
interface SeaechResult {
|
||||||
|
id: string;
|
||||||
citizenId: string;
|
citizenId: string;
|
||||||
name: string;
|
name: string;
|
||||||
posTypeName: string;
|
posTypeName: string;
|
||||||
|
|
@ -60,6 +64,7 @@ const formData = reactive<FormDetailPosition>({
|
||||||
positionType: "", //*เลขที่ตำแหน่ง
|
positionType: "", //*เลขที่ตำแหน่ง
|
||||||
positionLevel: "", //*เลขที่ตำแหน่ง
|
positionLevel: "", //*เลขที่ตำแหน่ง
|
||||||
personal: "", //*เลขที่ตำแหน่ง
|
personal: "", //*เลขที่ตำแหน่ง
|
||||||
|
position: "", //*เลขที่ตำแหน่ง
|
||||||
status: "",
|
status: "",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
@ -192,6 +197,7 @@ const columnsResult = ref<QTableProps["columns"]>([
|
||||||
style: "font-size: 14px",
|
style: "font-size: 14px",
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
function close() {
|
function close() {
|
||||||
modal.value = false;
|
modal.value = false;
|
||||||
}
|
}
|
||||||
|
|
@ -251,6 +257,9 @@ function clearForm() {
|
||||||
formData.positionType = "";
|
formData.positionType = "";
|
||||||
formData.positionLevel = "";
|
formData.positionLevel = "";
|
||||||
formData.personal = "";
|
formData.personal = "";
|
||||||
|
formData.position = "";
|
||||||
|
row.value = []
|
||||||
|
rowResult.value = []
|
||||||
}
|
}
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
|
|
@ -316,38 +325,45 @@ function validateForm() {
|
||||||
|
|
||||||
/** ฟังชั่น บันทึก */
|
/** ฟังชั่น บันทึก */
|
||||||
function onSubmit() {
|
function onSubmit() {
|
||||||
dialogConfirm($q, () => {
|
dialogConfirm(
|
||||||
// showLoader();
|
$q,
|
||||||
// http
|
() => {
|
||||||
// .post(config.API.createOrganization, formData)
|
// showLoader();
|
||||||
// .then((res) => {
|
// http
|
||||||
// status.value = true;
|
// .post(config.API.createOrganization, formData)
|
||||||
// store.typeOrganizational = "draft";
|
// .then((res) => {
|
||||||
// store.draftId = res.data.result.id;
|
// status.value = true;
|
||||||
// success($q, "บันทึกข้อมูลสำเร็จ");
|
// store.typeOrganizational = "draft";
|
||||||
// // props.fetchActive?.();
|
// store.draftId = res.data.result.id;
|
||||||
// })
|
// success($q, "บันทึกข้อมูลสำเร็จ");
|
||||||
// .catch((err) => {
|
// // props.fetchActive?.();
|
||||||
// messageError($q, err);
|
// })
|
||||||
// })
|
// .catch((err) => {
|
||||||
// .finally(async () => {
|
// messageError($q, err);
|
||||||
// modal.value = await false;
|
// })
|
||||||
// await close();
|
// .finally(async () => {
|
||||||
// await hideLoader();
|
// modal.value = await false;
|
||||||
// });
|
// await close();
|
||||||
},'ยืนยันการเลือกคนครอง','ต้องการยืนยันการเลือกคนครองตำแหน่งนี้ใช่หรือไม่?');
|
// await hideLoader();
|
||||||
|
// });
|
||||||
|
},
|
||||||
|
"ยืนยันการเลือกคนครอง",
|
||||||
|
"ต้องการยืนยันการเลือกคนครองตำแหน่งนี้ใช่หรือไม่?"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** เมื่อ enter ให้ทำการ ค้นหาข้อมูล */
|
/** เมื่อ enter ให้ทำการ ค้นหาข้อมูล */
|
||||||
function filterFn() {
|
function searchData() {
|
||||||
const data = [
|
const data = [
|
||||||
{
|
{
|
||||||
|
id: "test1",
|
||||||
citizenId: "test1",
|
citizenId: "test1",
|
||||||
name: "test1",
|
name: "test1",
|
||||||
posTypeName: "test1",
|
posTypeName: "test1",
|
||||||
posLevelName: "test1",
|
posLevelName: "test1",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
id: "test2",
|
||||||
citizenId: "test2",
|
citizenId: "test2",
|
||||||
name: "test2",
|
name: "test2",
|
||||||
posTypeName: "test2",
|
posTypeName: "test2",
|
||||||
|
|
@ -358,202 +374,234 @@ function filterFn() {
|
||||||
rowResult.value = data;
|
rowResult.value = data;
|
||||||
// props.fetchListDisciplinary?.();
|
// props.fetchListDisciplinary?.();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function clearPosition() {
|
||||||
|
formData.positionType = "";
|
||||||
|
formData.positionLevel = "";
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<template>
|
<q-dialog v-model="modal" persistent>
|
||||||
<q-dialog v-model="modal" persistent>
|
<q-card style="min-width: 80vw">
|
||||||
<q-card style="min-width: 80vw">
|
<form @submit.prevent="validateForm">
|
||||||
<form @submit.prevent="validateForm">
|
<DialogHeader :tittle="`เลือกคนครอง`" :close="close" />
|
||||||
<DialogHeader :tittle="`เลือกคนครอง`" :close="close" />
|
<q-separator />
|
||||||
<q-separator />
|
|
||||||
|
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<div class="q-px-md">
|
<div class="q-px-md">
|
||||||
<div class="row q-col-gutter-sm q-mb-xs">
|
<div class="row q-col-gutter-sm q-mb-xs">
|
||||||
<div class="col-4 text-bold">
|
<div class="text-bold text-body1">
|
||||||
<div>
|
<p>เลขที่ตำแหน่ง</p>
|
||||||
<p>เลขที่ตำแหน่ง</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="col-8 text-grey-8">
|
|
||||||
<p>{{ formData.positionNo }}</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="text-grey-8 q-ml-sm text-body1">
|
||||||
<div class="row q-col-gutter-sm q-mb-xs">
|
<p>{{ formData.positionNo }}</p>
|
||||||
<div class="col-12">
|
|
||||||
<d-table
|
|
||||||
flat
|
|
||||||
:columns="columns"
|
|
||||||
:rows="row"
|
|
||||||
row-key="id"
|
|
||||||
dense
|
|
||||||
hide-bottom
|
|
||||||
class="custom-header-table-expand"
|
|
||||||
>
|
|
||||||
<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">
|
|
||||||
<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-tr>
|
|
||||||
</template>
|
|
||||||
</d-table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="row q-col-gutter-sm q-mt-sm">
|
|
||||||
<div class="col-3">
|
|
||||||
<q-input
|
|
||||||
ref="positionExecutiveFieldRef"
|
|
||||||
v-model="formData.personal"
|
|
||||||
:class="inputEdit(isReadonly)"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
for="#search"
|
|
||||||
label="ค้นหาจากชื่อ-นามสกุล หรือเลขประจำตัวประชาชน"
|
|
||||||
lazy-rules
|
|
||||||
hide-bottom-space
|
|
||||||
@keydown.enter.prevent="filterFn"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="col-2">
|
|
||||||
<q-select
|
|
||||||
ref="positionTypeRef"
|
|
||||||
:class="inputEdit(isReadonly)"
|
|
||||||
label="ประเภทตำแหน่ง"
|
|
||||||
v-model="formData.positionType"
|
|
||||||
:options="typeOps"
|
|
||||||
emit-value
|
|
||||||
dense
|
|
||||||
@update:model-value="updateSelectType"
|
|
||||||
map-options
|
|
||||||
outlined
|
|
||||||
option-label="name"
|
|
||||||
option-value="id"
|
|
||||||
lazy-rules
|
|
||||||
hide-bottom-space
|
|
||||||
:rules="
|
|
||||||
!isDisValidate
|
|
||||||
? [(val) => !!val || `${'กรุณาเลือกประเภทตำแหน่ง'}`]
|
|
||||||
: []
|
|
||||||
"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div class="col-2">
|
|
||||||
<q-select
|
|
||||||
ref="positionLevelRef"
|
|
||||||
:class="inputEdit(isReadonly)"
|
|
||||||
label="ระดับตำแหน่ง"
|
|
||||||
v-model="formData.positionLevel"
|
|
||||||
:disable="formData.positionType === ''"
|
|
||||||
:options="levelOps"
|
|
||||||
emit-value
|
|
||||||
dense
|
|
||||||
map-options
|
|
||||||
outlined
|
|
||||||
option-label="name"
|
|
||||||
option-value="id"
|
|
||||||
lazy-rules
|
|
||||||
hide-bottom-space
|
|
||||||
:rules="
|
|
||||||
!isDisValidate
|
|
||||||
? [(val) => !!val || `${'กรุณาเลือกระดับตำแหน่ง'}`]
|
|
||||||
: []
|
|
||||||
"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<q-space />
|
|
||||||
<q-select
|
|
||||||
for="#select"
|
|
||||||
v-model="visibleColumnsResult"
|
|
||||||
multiple
|
|
||||||
outlined
|
|
||||||
dense
|
|
||||||
options-dense
|
|
||||||
:display-value="$q.lang.table.columns"
|
|
||||||
emit-value
|
|
||||||
map-options
|
|
||||||
:options="columnsResult"
|
|
||||||
option-value="name"
|
|
||||||
options-cover
|
|
||||||
style="min-width: 150px"
|
|
||||||
class="col-xs-12 col-sm-3 col-md-2"
|
|
||||||
/>
|
|
||||||
<div class="col-12">
|
|
||||||
<d-table
|
|
||||||
flat
|
|
||||||
:columns="columnsResult"
|
|
||||||
:rows="rowResult"
|
|
||||||
row-key="id"
|
|
||||||
dense
|
|
||||||
hide-bottom
|
|
||||||
class="custom-header-table-expand"
|
|
||||||
>
|
|
||||||
<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">
|
|
||||||
<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-tr>
|
|
||||||
</template>
|
|
||||||
</d-table>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-card-section>
|
|
||||||
<q-separator />
|
<div class="row q-col-gutter-sm q-mb-xs">
|
||||||
<q-card-actions align="right" class="bg-white text-teal">
|
<div class="col-12">
|
||||||
<q-btn type="submit" :label="`ยืนยัน`" color="public" />
|
<d-table
|
||||||
</q-card-actions>
|
flat
|
||||||
</form>
|
:columns="columns"
|
||||||
</q-card>
|
:rows="row"
|
||||||
</q-dialog>
|
row-key="id"
|
||||||
</template>
|
dense
|
||||||
|
hide-pagination
|
||||||
|
class="custom-header-table"
|
||||||
|
>
|
||||||
|
<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">
|
||||||
|
<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-tr>
|
||||||
|
</template>
|
||||||
|
</d-table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row q-col-gutter-sm q-mt-sm">
|
||||||
|
<div class="col-2">
|
||||||
|
<q-input
|
||||||
|
ref="positionExecutiveFieldRef"
|
||||||
|
v-model="formData.personal"
|
||||||
|
:class="inputEdit(isReadonly)"
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
for="#search"
|
||||||
|
label="ค้นหาจากชื่อ-นามสกุล หรือเลขประจำตัวประชาชน"
|
||||||
|
lazy-rules
|
||||||
|
hide-bottom-space
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<q-input
|
||||||
|
ref="positionRef"
|
||||||
|
v-model="formData.position"
|
||||||
|
:class="inputEdit(isReadonly)"
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
for="#position"
|
||||||
|
label="ตำแหน่งในสายงาน"
|
||||||
|
lazy-rules
|
||||||
|
hide-bottom-space
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<q-select
|
||||||
|
ref="positionTypeRef"
|
||||||
|
:class="inputEdit(isReadonly)"
|
||||||
|
label="ประเภทตำแหน่ง"
|
||||||
|
v-model="formData.positionType"
|
||||||
|
:options="typeOps"
|
||||||
|
emit-value
|
||||||
|
dense
|
||||||
|
@update:model-value="updateSelectType"
|
||||||
|
map-options
|
||||||
|
outlined
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
lazy-rules
|
||||||
|
hide-bottom-space
|
||||||
|
:rules="
|
||||||
|
!isDisValidate
|
||||||
|
? [(val) => !!val || `${'กรุณาเลือกประเภทตำแหน่ง'}`]
|
||||||
|
: []
|
||||||
|
"
|
||||||
|
><template v-if="formData.positionType" v-slot:append>
|
||||||
|
<q-icon
|
||||||
|
name="cancel"
|
||||||
|
@click.stop.prevent="clearPosition()"
|
||||||
|
class="cursor-pointer"
|
||||||
|
/> </template
|
||||||
|
></q-select>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<q-select
|
||||||
|
|
||||||
|
ref="positionLevelRef"
|
||||||
|
:class="inputEdit(isReadonly)"
|
||||||
|
label="ระดับตำแหน่ง"
|
||||||
|
v-model="formData.positionLevel"
|
||||||
|
:disable="formData.positionType == ''"
|
||||||
|
:options="levelOps"
|
||||||
|
emit-value
|
||||||
|
dense
|
||||||
|
map-options
|
||||||
|
outlined
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
lazy-rules
|
||||||
|
hide-bottom-space
|
||||||
|
:rules="
|
||||||
|
!isDisValidate
|
||||||
|
? [(val) => !!val || `${'กรุณาเลือกระดับตำแหน่ง'}`]
|
||||||
|
: []
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<template v-if="formData.positionLevel" v-slot:append>
|
||||||
|
<q-icon
|
||||||
|
name="cancel"
|
||||||
|
@click.stop.prevent="formData.positionLevel = ''"
|
||||||
|
class="cursor-pointer"
|
||||||
|
/> </template
|
||||||
|
></q-select>
|
||||||
|
</div>
|
||||||
|
<div class="col-2">
|
||||||
|
<q-btn
|
||||||
|
label="ค้นหา"
|
||||||
|
color="teal-5"
|
||||||
|
class="full-height"
|
||||||
|
icon="search"
|
||||||
|
@click="searchData"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<q-select
|
||||||
|
for="#select"
|
||||||
|
v-model="visibleColumnsResult"
|
||||||
|
multiple
|
||||||
|
outlined
|
||||||
|
dense
|
||||||
|
options-dense
|
||||||
|
:display-value="$q.lang.table.columns"
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
:options="columnsResult"
|
||||||
|
option-value="name"
|
||||||
|
options-cover
|
||||||
|
style="min-width: 150px"
|
||||||
|
class="col-xs-12 col-sm-3 col-md-2"
|
||||||
|
/>
|
||||||
|
<div class="col-12">
|
||||||
|
<d-table
|
||||||
|
flat
|
||||||
|
:columns="columnsResult"
|
||||||
|
:rows="rowResult"
|
||||||
|
row-key="id"
|
||||||
|
dense
|
||||||
|
hide-pagination
|
||||||
|
class="custom-header-table"
|
||||||
|
>
|
||||||
|
<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">
|
||||||
|
<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-tr>
|
||||||
|
</template>
|
||||||
|
</d-table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</q-card-section>
|
||||||
|
<q-separator />
|
||||||
|
<q-card-actions align="right" class="bg-white text-teal">
|
||||||
|
<q-btn type="submit" :label="`ยืนยัน`" color="public" />
|
||||||
|
</q-card-actions>
|
||||||
|
</form>
|
||||||
|
</q-card>
|
||||||
|
</q-dialog>
|
||||||
</template>
|
</template>
|
||||||
|
<style scoped></style>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue