Merge branch 'develop' into working

This commit is contained in:
Kittapath 2023-10-18 01:44:44 +07:00
commit 33e1f9c951
15 changed files with 1621 additions and 342 deletions

View file

@ -431,7 +431,7 @@ const menuList = readonly<any[]>([
{
key: 11.4,
label: "ออกคำสั่ง",
path: "/discipline-order",
path: "/disciplineorder",
role: "coin",
},
{

View file

@ -191,6 +191,18 @@
selection="multiple"
v-model:selected="selected"
>
<template v-slot:pagination="scope">
<q-pagination
v-model="pagination.page"
active-color="primary"
color="dark"
:max="scope.pagesNumber"
:max-pages="5"
size="sm"
boundary-links
direction-links
></q-pagination>
</template>
<template v-slot:header="props">
<q-tr :props="props">
<q-th auto-width>
@ -239,7 +251,12 @@ const selected = ref<string[]>([]);
const { messageError, showLoader, hideLoader } = mixin;
const dateFilter = ref<[Date, Date]>([new Date(), new Date()]); //
const pagination = ref({
// sortBy: "desc",
descending: false,
page: 1,
rowsPerPage: 10,
});
const props = defineProps({
inputfilter: String,
inputvisible: Array,

View file

@ -1,5 +1,6 @@
<script setup lang="ts">
import { ref, onMounted } from "vue";
import { useQuasar } from "quasar";
import { useRoute, useRouter } from "vue-router";
import type { DataOption } from "../../interface/index/Main";
@ -9,33 +10,64 @@ import { useCounterMixin } from "@/stores/mixin";
import { useComplainstDataStore } from "../../stroes/ComplaintsStore";
const route = useRoute();
const $q = useQuasar();
const router = useRouter();
const mixin = useCounterMixin();
const { date2Thai } = mixin;
const { date2Thai, dialogConfirm } = mixin;
const complainstStore = useComplainstDataStore();
const { selectComplainantTpye } = complainstStore;
const { selectComplainantTpye, filterSelector, fectOptioin } = complainstStore;
const complainantType = ref<string>("");
const complainantoptions = ref<DataOption[]>([
{ id: "0", name: "บุคคล" },
{ id: "1", name: "หน่ายงาน" },
{ id: "2", name: "กรุงเทพหมานคร" },
]);
const complainant = ref<string>("");
const office = ref<string>("");
const agency = ref<string>("");
const agencytoptions = ref<DataOption[]>([
{ id: "0", name: "หน่ายงานเอ" },
{ id: "1", name: "หน่ายงานบี" },
{ id: "2", name: "หน่ายงานชี" },
]);
const offenseDescriptiontoptions = ref<DataOption[]>([
{ id: "0", name: "ยังไม่ระบุ" },
{ id: "1", name: "ไม่ร้ายแรง" },
{ id: "2", name: "ร้ายแรง" },
]);
const considerationLeveltoptions = ref<DataOption[]>([
{ id: "0", name: "ปกติ" },
{ id: "1", name: "ด่วน" },
{ id: "2", name: "ด่วนมาก" },
]);
const receivecomplaintstoptions = ref<DataOption[]>([
{ id: "0", name: "สตง" },
{ id: "1", name: "ปปช" },
{ id: "2", name: "ปปท" },
{ id: "3", name: "จดหมาย" },
{ id: "4", name: "อีเมล" },
{ id: "5", name: "โทรศัพท์" },
{ id: "6", name: "บอกกล่าว" },
]);
// form
const complainantType = ref<string>("");
const complainant = ref<string>(""); //
const office = ref<string>(""); //
const agency = ref<string>("");
const topicComplaint = ref<string>("");
const detail = ref<string>("");
const datereceive = ref<Date>();
const dateconsideration = ref<Date>();
const offenseDescription = ref<string>("");
const considerationLevel = ref<string>("");
const datewarn = ref<Date>();
const receivecomplaints = ref<string>("");
const petitioner = ref<string>("");
const files = ref<any>();
const fileDocDataUpload = ref<File[]>([]);
onMounted(() => {
fectOptioin(complainantoptions.value, agencytoptions.value);
});
async function selectComplainant(val: string) {
complainant.value = "";
office.value = "";
@ -85,6 +117,15 @@ const fileUploadDoc = async (files: any) => {
fileDocDataUpload.value.push(file);
});
};
function onSubmit() {
dialogConfirm(
$q,
async () => {},
"ยืนยันการบันทึกข้อมูล",
"ต้องการยืนยันการบันทึกข้อมูลนี้หรือไม่ ?"
);
}
</script>
<template>
<div class="toptitle text-dark col-12 row items-center">
@ -102,282 +143,307 @@ const fileUploadDoc = async (files: any) => {
</div>
<div class="col-12 q-mt-sm">
<q-card flat bordered>
<div class="col-12 row q-pa-md">
<div
class="col-xs-12 col-sm-12 row q-col-gutter-x-md q-col-gutter-y-xs"
>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="complainantType"
:options="complainantoptions"
label="ผู้ร้องเรียน"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกผู้ร้องเรียน'}`]"
lazy-rules
@update:model-value="selectComplainant(complainantType)"
/>
</div>
<div class="col-xs-12 col-sm-2" v-if="complainantType === '0'">
<q-select
dense
outlined
v-model="complainant"
:options="complainstStore.optionListName"
label="ราชชื่อจากทะเบียรประวัติ"
option-value="id"
option-label="name"
emit-value
map-options
/>
</div>
<div class="col-xs-12 col-sm-2" v-if="complainantType === '1'">
<q-input dense outlined v-model="office" label="เลือกสำนักงาน" />
</div>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="agency"
:options="agencytoptions"
label="หน่วยงานที่พิจารณา"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกหน่วยงาน'}`]"
lazy-rules
/>
</div>
<div class="col-xs-12 col-sm-12">
<q-input
dense
outlined
v-model="topicComplaint"
:rules="[(val) => !!val || 'กรุณาการข้อมูล']"
lazy-rules
label="เรื่องร้องเรียน"
type="textarea"
rows="5"
/>
</div>
<div class="col-xs-12 col-sm-12">
<q-input
dense
outlined
v-model="detail"
:rules="[(val) => !!val || 'กรุณาการข้อมูล']"
lazy-rules
label="รายละเอียดที่เกี่นวข้องกับเรื่องที่ต้องการจะข้อเรียน"
type="textarea"
rows="5"
/>
</div>
<div class="col-xs-12 col-sm-2">
<datepicker
menu-class-name="modalfix"
v-model="datereceive"
:locale="'th'"
autoApply
borderless
:enableTimePicker="false"
week-start="0"
>
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input
outlined
dense
class="full-width datepicker"
:model-value="
datereceive != null ? date2Thai(datereceive) : null
"
label="วันที่รับเรื่อง"
:rules="[(val) => !!val || `${'กรุณาเลือกวันที่รับเรื่อง'}`]"
lazy-rules
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-2">
<datepicker
menu-class-name="modalfix"
v-model="datereceive"
:locale="'th'"
autoApply
borderless
:enableTimePicker="false"
week-start="0"
>
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input
outlined
dense
class="full-width datepicker"
:model-value="
datereceive != null ? date2Thai(datereceive) : null
"
label="วันที่กำหนดวันพิจารณา"
:rules="[
(val) => !!val || `${'กรุณาเลือกวันที่กำหนดวันพิจารณา'}`,
]"
lazy-rules
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="complainantType"
:options="complainantoptions"
label="ลักษณะความผิด"
option-value="id"
option-label="name"
emit-value
map-options
/>
</div>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="complainantType"
:options="complainantoptions"
label="ระดับการพิจารณา"
option-value="id"
option-label="name"
emit-value
map-options
/>
</div>
<div class="col-xs-12 col-sm-3"></div>
<div class="col-xs-12 col-sm-2">
<datepicker
menu-class-name="modalfix"
v-model="datereceive"
:locale="'th'"
autoApply
borderless
:enableTimePicker="false"
week-start="0"
>
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input
outlined
dense
class="full-width datepicker"
:model-value="
datereceive != null ? date2Thai(datereceive) : null
"
label="วันที่แจ้งเตือนล่ววงหน้า"
:rules="[
(val) => !!val || `${'กรุณาเลือกวันที่แจ้งเตือนล่ววงหน้า'}`,
]"
lazy-rules
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="complainantType"
:options="complainantoptions"
label="รับเรื่องร้องเรียน"
option-value="id"
option-label="name"
emit-value
map-options
/>
</div>
<div class="col-xs-12 col-sm-6"></div>
<div class="col-xs-12 col-sm-4">
<q-input
dense
outlined
v-model="office"
label="ผู้ร้องเรียน"
:rules="[(val) => !!val || `${'กรุณากรอกข้อมูล'}`]"
lazy-rules
/>
</div>
<div class="col-xs-12 col-sm-4">
<q-file
class="col-xs-12 col-sm-10"
outlined
dense
v-model="files"
@added="fileUploadDoc"
label="ไฟล์เอกสารหลักฐาน"
hide-bottom-space
lazy-rules
accept=".pdf,.xlsx,.doc"
>
<template v-slot:prepend>
<q-icon name="attach_file" />
</template>
</q-file>
<q-form @submit.prevent="onSubmit">
<div class="col-12 row q-pa-md">
<div
class="col-xs-12 col-sm-12 row q-col-gutter-x-md q-col-gutter-y-xs"
>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="complainantType"
:options="complainstStore.complainantoptions"
label="ผู้ร้องเรียน"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกผู้ร้องเรียน'}`]"
lazy-rules
@update:model-value="selectComplainant(complainantType)"
use-input
@filter="(inputValue: any,
doneFn: Function) => filterSelector(inputValue, doneFn, 'filtercomplainantType'
)"
/>
</div>
<div class="col-xs-12 col-sm-2" v-if="complainantType === '0'">
<q-select
dense
outlined
v-model="complainant"
:options="complainstStore.optionListName"
label="ราชชื่อจากทะเบียรประวัติ"
option-value="id"
option-label="name"
emit-value
map-options
/>
</div>
<div class="col-xs-12 col-sm-2" v-if="complainantType === '1'">
<q-input dense outlined v-model="office" label="เลือกสำนักงาน" />
</div>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="agency"
:options="complainstStore.agencytoptions"
label="หน่วยงานที่พิจารณา"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกหน่วยงาน'}`]"
lazy-rules
use-input
@filter="(inputValue: any,
doneFn: Function) => filterSelector(inputValue, doneFn, 'filteragencytoptions'
)"
/>
</div>
<div class="col-xs-12 col-sm-12">
<q-input
dense
outlined
v-model="topicComplaint"
:rules="[(val) => !!val || 'กรุณาการข้อมูล']"
lazy-rules
label="เรื่องร้องเรียน"
type="textarea"
rows="5"
/>
</div>
<div class="col-xs-12 col-sm-12">
<q-input
dense
outlined
v-model="detail"
:rules="[(val) => !!val || 'กรุณาการข้อมูล']"
lazy-rules
label="รายละเอียดที่เกี่นวข้องกับเรื่องที่ต้องการจะข้อเรียน"
type="textarea"
rows="5"
/>
</div>
<div class="col-xs-12 col-sm-2">
<datepicker
menu-class-name="modalfix"
v-model="datereceive"
:locale="'th'"
autoApply
borderless
:enableTimePicker="false"
week-start="0"
>
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input
outlined
dense
class="full-width datepicker"
:model-value="
datereceive != null ? date2Thai(datereceive) : null
"
label="วันที่รับเรื่อง"
:rules="[
(val) => !!val || `${'กรุณาเลือกวันที่รับเรื่อง'}`,
]"
lazy-rules
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-2">
<datepicker
menu-class-name="modalfix"
v-model="dateconsideration"
:locale="'th'"
autoApply
borderless
:enableTimePicker="false"
week-start="0"
>
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input
outlined
dense
class="full-width datepicker"
:model-value="
dateconsideration != null
? date2Thai(dateconsideration)
: null
"
label="วันที่กำหนดวันพิจารณา"
:rules="[
(val) => !!val || `${'กรุณาเลือกวันที่กำหนดวันพิจารณา'}`,
]"
lazy-rules
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="offenseDescription"
:options="offenseDescriptiontoptions"
label="ลักษณะความผิด"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกลักษณะความผิด'}`]"
lazy-rules
/>
</div>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="considerationLevel"
:options="considerationLeveltoptions"
label="ระดับการพิจารณา"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกระดับการพิจารณา'}`]"
lazy-rules
/>
</div>
<div class="col-xs-12 col-sm-3"></div>
<div class="col-xs-12 col-sm-2">
<datepicker
menu-class-name="modalfix"
v-model="datewarn"
:locale="'th'"
autoApply
borderless
:enableTimePicker="false"
week-start="0"
>
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input
outlined
dense
class="full-width datepicker"
:model-value="datewarn != null ? date2Thai(datewarn) : null"
label="วันที่แจ้งเตือนล่ววงหน้า"
:rules="[
(val) =>
!!val || `${'กรุณาเลือกวันที่แจ้งเตือนล่ววงหน้า'}`,
]"
lazy-rules
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-2">
<q-select
dense
outlined
v-model="receivecomplaints"
:options="receivecomplaintstoptions"
label="รับเรื่องร้องเรียน"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกรับเรื่องร้องเรียน'}`]"
lazy-rules
/>
</div>
<div class="col-xs-12 col-sm-6"></div>
<div class="col-xs-12 col-sm-4">
<q-input
dense
outlined
v-model="petitioner"
label="ผู้ร้องเรียน"
:rules="[(val) => !!val || `${'กรุณากรอกข้อมูล'}`]"
lazy-rules
/>
</div>
<div class="col-xs-12 col-sm-4">
<q-file
class="col-xs-12 col-sm-10"
outlined
dense
v-model="files"
@added="fileUploadDoc"
label="ไฟล์เอกสารหลักฐาน"
hide-bottom-space
lazy-rules
accept=".pdf,.xlsx,.doc"
clearable
>
<template v-slot:prepend>
<q-icon name="attach_file" />
</template>
</q-file>
</div>
</div>
</div>
</div>
<q-separator />
<div class="row col-12 q-pa-sm">
<q-space />
<q-btn flat round color="secondary" icon="mdi-content-save-outline"
><q-tooltip>บทกขอม</q-tooltip></q-btn
>
</div>
<q-separator />
<div class="row col-12 q-pa-sm">
<q-space />
<q-btn
flat
round
color="secondary"
icon="mdi-content-save-outline"
type="submit"
><q-tooltip>บทกขอม</q-tooltip></q-btn
>
</div>
</q-form>
</q-card>
</div>
</template>

View file

@ -162,7 +162,7 @@ const paginationLabel = (start: string, end: string, total: string) => {
color="primary"
icon="mdi-plus"
@click="redirectToPageadd()"
><q-tooltip>เพ</q-tooltip></q-btn
><q-tooltip>เพเรองรองเรยน </q-tooltip></q-btn
>
<q-space />
<div class="col-2">

View file

@ -106,8 +106,9 @@ const $q = useQuasar();
const id = ref<string>(route.params.id as string);
const myForm = ref<QForm | null>(null); //form data input
const edit = ref<boolean>(false);
const dateStart = ref<Date>(new Date());
const dateEnd = ref<Date>(new Date());
const dateInvestigate = ref<Date>(new Date());
const dateAllegation = ref<Date>(new Date());
const dateEvident = ref<Date>(new Date());
const filterKeyword2 = ref<string>("");
const typefault = ref<string>("");
const faultLevel = ref<string>("");
@ -171,8 +172,8 @@ const fetchData = async () => {
// : null;
// yearly.value = data.period_year;
// datelast.value = data.period_amount;
// dateStart.value = new Date(data.period_start);
// dateEnd.value = new Date(data.period_end);
// dateInvestigate.value = new Date(data.period_start);
// dateAllegation.value = new Date(data.period_end);
// files.value = data.period_doc;
// })
// .catch((e) => {
@ -239,11 +240,11 @@ const addData = async () => {
// formData.append("year", yearly.value.toString());
// formData.append("amount", datelast.value.toString());
// formData.append("round", roundInsig.value.value);
// if (dateStart.value !== null) {
// formData.append("startDate", dateToISO(dateStart.value));
// if (dateInvestigate.value !== null) {
// formData.append("startDate", dateToISO(dateInvestigate.value));
// }
// if (dateEnd.value !== null) {
// formData.append("endDate", dateToISO(dateEnd.value));
// if (dateAllegation.value !== null) {
// formData.append("endDate", dateToISO(dateAllegation.value));
// }
// formData.append("file", files.value);
// showLoader();
@ -269,11 +270,11 @@ const editData = async (id: string) => {
// formData.append("year", yearly.value.toString());
// formData.append("amount", datelast.value.toString());
// formData.append("round", roundInsig.value.value);
// if (dateStart.value !== null) {
// formData.append("startDate", dateToISO(dateStart.value));
// if (dateInvestigate.value !== null) {
// formData.append("startDate", dateToISO(dateInvestigate.value));
// }
// if (dateEnd.value !== null) {
// formData.append("endDate", dateToISO(dateEnd.value));
// if (dateAllegation.value !== null) {
// formData.append("endDate", dateToISO(dateAllegation.value));
// }
// formData.append("file", files.value);
// showLoader();
@ -328,7 +329,7 @@ const clickBack = () => {
/>
<datepicker
menu-class-name="modalfix"
v-model="dateStart"
v-model="dateInvestigate"
:locale="'th'"
autoApply
class="col-xs-12 col-sm-4"
@ -348,7 +349,9 @@ const clickBack = () => {
dense
class="full-width datepicker"
:model-value="
dateStart != null ? date2Thai(dateStart) : null
dateInvestigate != null
? date2Thai(dateInvestigate)
: null
"
:label="`${'วันที่สอบสวน'}`"
:rules="[(val) => !!val || `${'กรุณาเลือกวันที่สอบสวน'}`]"
@ -366,7 +369,7 @@ const clickBack = () => {
</datepicker>
<datepicker
menu-class-name="modalfix"
v-model="dateEnd"
v-model="dateAllegation"
class="col-xs-12 col-sm-4"
:locale="'th'"
autoApply
@ -385,7 +388,11 @@ const clickBack = () => {
outlined
dense
class="col-xs-12 col-sm-4"
:model-value="dateEnd != null ? date2Thai(dateEnd) : null"
:model-value="
dateAllegation != null
? date2Thai(dateAllegation)
: null
"
:label="`${'วันที่รับทราบข้อกล่าวหา'}`"
:rules="[
(val) =>
@ -405,7 +412,7 @@ const clickBack = () => {
</datepicker>
<datepicker
menu-class-name="modalfix"
v-model="dateStart"
v-model="dateEvident"
:locale="'th'"
autoApply
class="col-xs-12 col-sm-4"
@ -425,7 +432,7 @@ const clickBack = () => {
dense
class="full-width datepicker"
:model-value="
dateStart != null ? date2Thai(dateStart) : null
dateEvident != null ? date2Thai(dateEvident) : null
"
:label="`${'วันที่สรุปพยานหลักฐาน'}`"
:rules="[

View file

@ -1,9 +1,232 @@
<script setup lang="ts"></script>
<script setup lang="ts">
import { ref, onMounted } from "vue";
import { useRouter } from "vue-router";
import type { QTableProps } from "quasar";
// importStroe
import { useOrderStore } from "../../stroes/OrderStore";
const router = useRouter();
const OrderStore = useOrderStore();
const { fecthOrder } = OrderStore;
const columns = ref<QTableProps["columns"]>([
{
name: "subject",
align: "left",
label: "เรื่อง",
sortable: true,
field: "subject",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "ordernumber",
align: "left",
label: "เลขที่คำสั่ง",
sortable: true,
field: "ordernumber",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "dateOrder",
align: "left",
label: "สั่ง ณ วันที่/วันที่คำสั่งมีผล",
sortable: true,
field: "dateOrder",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "orderby",
align: "left",
label: "คำสั่งโดย",
sortable: true,
field: "orderby",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "signer",
align: "left",
label: "ผู้ลงนาม",
sortable: true,
field: "signer",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "statusorder",
align: "left",
label: "สถานะของคำสั่ง",
sortable: true,
field: "statusorder",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
]);
const visibleColumns = ref<string[]>([
"subject",
"ordernumber",
"dateOrder",
"orderby",
"signer",
"statusorder",
]);
const filterTable = ref<string>("");
onMounted(async () => {
await fecthListOrder();
});
async function fecthListOrder() {
const listData = [
{
subject: "ทุจริตในหน้าที่",
ordernumber: "1/2556",
dateOrder: "1 ธ.ค. 2565",
orderby: "สำนักงานคณพกรรมการข้าราชการกรุงเทพฯ",
signer: "นางศิรินภา คงน้อย",
statusorder: "เสร็จสิ้นแล้ว",
},
{
subject: "ทุจริตในหน้าที่",
ordernumber: "4/2556",
dateOrder: "1 ธ.ค. 2565",
orderby: "สำนักงานคณพกรรมการข้าราชการกรุงเทพฯ",
signer: "นางศิรินภา คงน้อย",
statusorder: "เสร็จสิ้นแล้ว",
},
{
subject: "ทุจริตในหน้าที่",
ordernumber: "2/2556",
dateOrder: "1 ธ.ค. 2565",
orderby: "สำนักงานคณพกรรมการข้าราชการกรุงเทพฯ",
signer: "นางศิรินภา คงน้อย",
statusorder: "เสร็จสิ้นแล้ว",
},
];
await fecthOrder(listData);
}
function redirectToPageadd() {
router.push(`/discipline-order/add`);
}
//pagination
const pagination = ref({
descending: true,
page: 1,
rowsPerPage: 10,
});
const paging = ref<boolean>(true);
const paginationLabel = (start: string, end: string, total: string) => {
if (paging.value == true) return " " + start + "-" + end + " ใน " + total;
else return start + "-" + end + " ใน " + total;
};
</script>
<template>
<div>
<h1>ออกคำส</h1>
<div class="toptitle text-dark col-12 row items-center">
รายการออกคำสงลงโทษทางว
</div>
<div class="col-12 q-mt-sm">
<q-card flat bordered>
<div class="q-pa-md">
<q-toolbar style="padding: 0" class="q-gutter-sm q-mb-md">
<q-btn
flat
dense
round
color="primary"
icon="mdi-plus"
@click="redirectToPageadd()"
><q-tooltip>เพมรายการออกคำสงลงโทษทางว </q-tooltip></q-btn
>
<q-space />
<div class="col-2">
<q-input dense outlined v-model="filterTable" label="ค้นหา" />
</div>
<div class="col-2">
<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
/>
</div>
</q-toolbar>
<d-table
ref="table"
:columns="columns"
:rows="OrderStore.rows"
:filter="filterTable"
row-key="subject"
flat
bordered
:paging="true"
dense
class="custom-header-table"
:visible-columns="visibleColumns"
:pagination-label="paginationLabel"
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">
<q-tr :props="props" class="cursor-pointer" style="height: 40px">
<q-td key="subject" :props="props">
{{ props.row.subject }}
</q-td>
<q-td key="ordernumber" :props="props">
{{ props.row.ordernumber }}
</q-td>
<q-td key="dateOrder" :props="props">
{{ props.row.dateOrder }}
</q-td>
<q-td key="orderby" :props="props">
<div class="table_ellipsis">
{{ props.row.orderby }}
</div>
</q-td>
<q-td key="signer" :props="props">
{{ props.row.signer }}
</q-td>
<q-td key="statusorder" :props="props">
{{ props.row.statusorder }}
</q-td>
</q-tr>
</template>
<template v-slot:pagination="scope">
<q-pagination
v-model="pagination.page"
active-color="primary"
color="dark"
:max="scope.pagesNumber"
:max-pages="5"
size="sm"
boundary-links
direction-links
></q-pagination>
</template>
</d-table>
</div>
</q-card>
</div>
</template>
<style scoped></style>
<style scoped></style>

View file

@ -0,0 +1,73 @@
<script setup lang="ts">
import { ref } from "vue";
import { useRouter } from "vue-router";
import step01 from "./Step01.vue";
import step02 from "./Step02.vue";
import step03 from "./Step03.vue";
const router = useRouter();
const step = ref<number>(1);
const nextStep = async () => {
localStorage.setItem("currentStep", step.value.toString());
step.value++;
};
const previousStep = async () => {
localStorage.setItem("currentStep", step.value.toString());
step.value--;
};
</script>
<template>
<div class="toptitle text-dark col-12 row items-center">
<q-btn
icon="mdi-arrow-left"
unelevated
round
dense
flat
color="primary"
class="q-mr-sm"
@click="router.push(`/discipline-order`)"
/>
ออกคำสงลงโทษทางว
</div>
<div class="col-12 q-mt-sm">
<q-card flat bordered>
<q-stepper
v-model="step"
ref="stepper"
animated
active-color="pirmary"
active-icon="none"
header-class="bg-grey-1 "
>
<q-step
:name="1"
prefix="1"
title="รายละเอียดการออกคำสั่ง"
:done="step > 1"
>
<step01 v-if="step === 1" :next="nextStep" :previous="previousStep" />
</q-step>
<q-step :name="2" prefix="2" title="เลือกรายชื่อ" :done="step > 2">
<step02 v-if="step === 2" :next="nextStep" :previous="previousStep" />
</q-step>
<q-step
:name="3"
prefix="3"
title="รายละเอียดคำสั่งและแนบท้าย"
:done="step > 3"
>
<step03 v-if="step === 3" :next="nextStep" :previous="previousStep" />
</q-step>
</q-stepper>
</q-card>
</div>
</template>
<style scoped></style>

View file

@ -0,0 +1,221 @@
<script setup lang="ts">
import { ref } from "vue";
// importStroe
import { useCounterMixin } from "@/stores/mixin";
const mixin = useCounterMixin();
const { date2Thai, dialogConfirm } = mixin;
const props = defineProps({
next: {
type: Function,
default: () => console.log("not function"),
},
previous: {
type: Function,
default: () => console.log("not function"),
},
});
const next = () => props.next();
const typeOrder = ref<string>("");
const dateYear = ref<number>(2023);
const date = ref<Date | null>(null);
function onSubmit() {
next();
}
</script>
<template>
<q-form @submit.prevent="onSubmit">
<div class="col-12 row q-pa-lg">
<div class="col-xs-12 col-sm-12 q-col-gutter-x-lg row q-col-gutter-y-xs">
<div class="col-xs-12 col-sm-6">
ประเภทคำส
<q-select
dense
outlined
v-model="typeOrder"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกประเภทคำสั่ง'}`]"
lazy-rules
use-input
/>
</div>
<div class="col-xs-12 col-sm-6">
คำสงโดย
<q-select
dense
outlined
v-model="typeOrder"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[(val) => !!val || `${'กรุณาเลือกคำสั่งโดย'}`]"
lazy-rules
use-input
/>
</div>
<div class="col-xs-12 col-sm-6">
เลอกรายการสอบสวนความผดทางว
<q-select
dense
outlined
v-model="typeOrder"
option-value="id"
option-label="name"
emit-value
map-options
:rules="[
(val) => !!val || `${'กรุณาเลือกรายการสอบสวนความผิดทางวินัย'}`,
]"
lazy-rules
use-input
/>
</div>
<div class="col-xs-12 col-sm-6">
อำนาจลงนาม
<q-input
dense
outlined
v-model="typeOrder"
placeholder="กรอกผู้มีอำนาจลงนาม"
:rules="[(val) => !!val || `${'กรุณากรอกผู้มีอำนาจลงนาม'}`]"
lazy-rules
/>
</div>
<div class="row col-xs-7 col-sm-3">
<div class="col-6">
คำสงท
<q-input
outlined
dense
v-model="typeOrder"
hide-bottom-space
:rules="[(val) => !!val || `${'กรุณากรอรคำสั่งที่'}`]"
lazy-rules
>
</q-input>
</div>
<label class="col-1 flex justify-center items-center text-bold"
>/</label
>
<div class="col-5">
พศ
<datepicker
v-model="dateYear"
:locale="'th'"
autoApply
year-picker
:enableTimePicker="false"
>
<template #year="{ year }">{{ year + 543 }}</template>
<template #year-overlay-value="{ value }">{{
parseInt(value + 543)
}}</template>
<template #trigger>
<q-input
:model-value="dateYear + 543"
:rules="[(val) => !!val || `${'กรุณากรอก พ.ศ.'}`]"
:label="`${'พ.ศ.'}`"
dense
outlined
>
</q-input>
</template>
</datepicker>
</div>
</div>
<div class="col-xs-5 col-sm-3">
นทผลคำส
<datepicker
menu-class-name="modalfix"
v-model="date"
:locale="'th'"
autoApply
borderless
:enableTimePicker="false"
week-start="0"
>
<template #year="{ year }">
{{ year + 543 }}
</template>
<template #year-overlay-value="{ value }">
{{ parseInt(value + 543) }}
</template>
<template #trigger>
<q-input
outlined
dense
class="full-width datepicker"
:model-value="date != null ? date2Thai(date) : null"
:rules="[(val) => !!val || `${'กรุณาเลือกวันที่มีผลคำสั่ง'}`]"
>
<template v-slot:prepend>
<q-icon
name="event"
class="cursor-pointer"
style="color: var(--q-primary)"
>
</q-icon>
</template>
</q-input>
</template>
</datepicker>
</div>
<div class="col-xs-12 col-sm-6">
ตำแหนงผอำนาจลงนาม
<q-input
dense
outlined
v-model="typeOrder"
placeholder="กรอกตำแหน่งผู้มีอำนาจลงนาม"
:rules="[(val) => !!val || `${'กรุณากรอกตำแหน่งผู้มีอำนาจลงนาม'}`]"
lazy-rules
/>
</div>
<div class="col-xs-12 col-sm-6">
คำสงเรอง
<q-input
dense
outlined
v-model="typeOrder"
placeholder="กรอกคำสั่งเรื่อง"
:rules="[(val) => !!val || `${'กรุณากรอกคำสั่งเรื่อง'}`]"
lazy-rules
/>
</div>
<div class="col-xs-12 col-sm-12">
รายละเอยดการกระทำความผ
<q-input
dense
outlined
v-model="typeOrder"
placeholder="กรอกรายละเอียดการกระทำความผิด"
:rules="[(val) => !!val || `${'กรุณากรอกคำสั่งเรื่อง'}`]"
lazy-rules
type="textarea"
rows="5"
/>
</div>
</div>
</div>
<q-card-actions align="right">
<q-btn
dense
unelevated
label="next"
color="public"
type="submit"
class="q-px-md"
/>
</q-card-actions>
</q-form>
</template>
<style scoped></style>

View file

@ -0,0 +1,38 @@
<script setup lang="ts">
const props = defineProps({
next: {
type: Function,
default: () => console.log("not function"),
},
previous: {
type: Function,
default: () => console.log("not function"),
},
});
const next = () => props.next();
const previous = () => props.previous();
</script>
<template>
<div><h1>step02</h1></div>
<q-card-actions align="right">
<q-btn
dense
unelevated
label="back"
color="public"
@click="previous()"
class="q-px-md"
/>
<q-btn
dense
unelevated
label="next"
color="public"
@click="next()"
class="q-px-md"
/>
</q-card-actions>
</template>
<style scoped></style>

View file

@ -0,0 +1,30 @@
<script setup lang="ts">
const props = defineProps({
next: {
type: Function,
default: () => console.log("not function"),
},
previous: {
type: Function,
default: () => console.log("not function"),
},
});
const next = () => props.next();
const previous = () => props.previous();
</script>
<template>
<div><h1>step03</h1></div>
<q-card-actions align="right">
<q-btn
dense
unelevated
label="back"
color="public"
@click="previous()"
class="q-px-md"
/>
</q-card-actions>
</template>
<style scoped></style>

View file

@ -1,9 +1,285 @@
<script setup lang="ts"></script>
<script setup lang="ts">
import { ref, useAttrs, onMounted } from "vue";
import type { QTableProps } from "quasar";
import router from "@/router";
import { useCounterMixin } from "@/stores/mixin";
import { useQuasar } from "quasar";
import config from "@/app.config";
import http from "@/plugins/http";
const mixin = useCounterMixin();
const {
date2Thai,
success,
messageError,
showLoader,
hideLoader,
dialogConfirm,
dialogRemove,
} = mixin;
const $q = useQuasar(); // noti quasar
const visibleColumns = ref<string[]>([
"no",
"subject",
"interrogated",
"fault",
"status",
]); //
//
const columns = ref<QTableProps["columns"]>([
{
name: "no",
align: "left",
label: "ลำดับ",
sortable: false,
field: "no",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
{
name: "subject",
align: "left",
label: "ชื่อประเภท",
sortable: true,
field: "subject",
headerStyle: "font-size: 14px",
style: "font-size: 14px",
},
]);
const rows = ref<any>([
{
subject: " จดหมาย",
},
{
subject: " อีเมล์",
},
{
subject: " โทรศัพท์",
},
{
subject: " บอกเล่า",
},
]);
//
const filterKeyword = ref<string>("");
const filterRef = ref<HTMLInputElement | null>(null);
const resetFilter = () => {
filterKeyword.value = "";
if (filterRef.value) {
filterRef.value.focus();
}
};
const attrs = ref<any>(useAttrs());
const paging = ref<boolean>(true);
const pagination = ref({
// sortBy: "desc",
descending: false,
page: 1,
rowsPerPage: 10,
});
const paginationLabel = (start: string, end: string, total: string) => {
if (paging.value == true) return " " + start + "-" + end + " ใน " + total;
else return start + "-" + end + " ใน " + total;
};
const clickAdd = () => {
router.push(`/discipline/channel/add`);
};
const clickDelete = (id: string) => {
$q.dialog({
title: "ยืนยันการลบช่องทาง",
message: "ต้องการลบช่องทางนี้ใช่หรือไม่?",
cancel: {
flat: true,
color: "negative",
},
persistent: true,
})
.onOk(async () => {
console.log("delete");
})
.onCancel(() => {})
.onDismiss(() => {});
};
onMounted(() => {});
</script>
<template>
<div>
<h1>องทางการรองเรยน</h1>
<div class="toptitle text-dark col-12 row items-center">
รายการองทางการรองเรยน
</div>
<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">
<q-table
ref="table"
:columns="columns"
:rows="rows"
:filter="filterKeyword"
row-key="interrogated"
flat
bordered
:paging="true"
dense
class="custom-header-table"
v-bind="attrs"
:visible-columns="visibleColumns"
:pagination-label="paginationLabel"
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 key="no" :props="props">
{{ props.rowIndex + 1 }}
</q-td>
<q-td key="subject" :props="props">
{{ props.row.subject }}
</q-td>
<q-td>
<q-btn
dense
size="12px"
flat
round
color="red"
@click="clickDelete(props.row.id)"
icon="mdi-delete"
>
<q-tooltip>ลบขอม</q-tooltip>
</q-btn>
</q-td>
</q-tr>
</template>
<template v-slot:pagination="scope">
<q-pagination
v-model="pagination.page"
active-color="primary"
color="dark"
:max="scope.pagesNumber"
:max-pages="5"
size="sm"
boundary-links
direction-links
></q-pagination>
</template>
</q-table>
</div>
</div>
</q-card>
</template>
<style scoped></style>
<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>

View file

@ -0,0 +1,214 @@
<script setup lang="ts">
import { ref, onMounted } from "vue";
import { useQuasar, QForm } from "quasar";
import { useRouter, useRoute } from "vue-router";
import { useCounterMixin } from "@/stores/mixin";
import type { QTableProps } from "quasar";
const mixin = useCounterMixin();
const {
date2Thai,
dateToISO,
messageError,
showLoader,
hideLoader,
dialogConfirm,
success,
dialogMessageNotify,
} = mixin;
const router = useRouter();
const route = useRoute();
const myForm = ref<QForm | null>(null); //form data input
const edit = ref<boolean>(false);
const channel = ref<string>("");
onMounted(async () => {
// if (route.params.id) {
// // params id
// await fetchData();
// }
});
//
const fetchData = async () => {
// edit.value = true;
// showLoader();
// await http
// .get(config.API.getRoundInsignia(id.value))
// .then((res) => {
// const data = res.data.result;
// id.value = data.period_id;
// roundInsig.value =
// options.value.filter((r: any) => r.value == data.period_round).length >
// 0
// ? options.value.filter((r: any) => r.value == data.period_round)[0]
// : null;
// yearly.value = data.period_year;
// datelast.value = data.period_amount;
// dateStart.value = new Date(data.period_start);
// dateEnd.value = new Date(data.period_end);
// files.value = data.period_doc;
// })
// .catch((e) => {
// messageError($q, e);
// })
// .finally(() => {
// hideLoader();
// });
};
const deleteData = async (id: string) => {
// showLoader();
// await http
// .delete(config.API.periodExamId(id))
// .then((res) => {
// success($q, "");
// })
// .catch((e) => {
// messageError($q, e);
// })
// .finally(async () => {
// hideLoader();
// });
};
//
//
const checkSave = () => {
// if (myForm.value !== null) {
// myForm.value.validate().then(async (success) => {
// if (success) {
// dialogConfirm($q, () => SaveData());
// } else if (Number(datelast.value) !== 0) {
// dialogMessageNotify($q, "");
// }
// });
// }
};
//
const SaveData = async () => {
// if (edit.value) {
// await editData(id.value);
// } else {
// await addData();
// clickBack();
// }
};
//
const addData = async () => {
// const formData = new FormData();
// const name = ` ${
// roundInsig.value.value
// } ${yearly.value + 543} `;
// formData.append("name", name);
// formData.append("year", yearly.value.toString());
// formData.append("amount", datelast.value.toString());
// formData.append("round", roundInsig.value.value);
// if (dateStart.value !== null) {
// formData.append("startDate", dateToISO(dateStart.value));
// }
// if (dateEnd.value !== null) {
// formData.append("endDate", dateToISO(dateEnd.value));
// }
// formData.append("file", files.value);
// showLoader();
// await http
// .post(config.API.listRoundInsignia(), formData)
// .then(() => {
// success($q, "");
// })
// .catch((e) => {
// messageError($q, e);
// })
// .finally(async () => {
// hideLoader();
// });
};
//
const editData = async (id: string) => {
// const formData = new FormData();
// const name = ` ${
// roundInsig.value.value
// } ${yearly.value + 543}`;
// formData.append("name", name);
// formData.append("year", yearly.value.toString());
// formData.append("amount", datelast.value.toString());
// formData.append("round", roundInsig.value.value);
// if (dateStart.value !== null) {
// formData.append("startDate", dateToISO(dateStart.value));
// }
// if (dateEnd.value !== null) {
// formData.append("endDate", dateToISO(dateEnd.value));
// }
// formData.append("file", files.value);
// showLoader();
// await http
// .put(config.API.editRoundInsignia(id), formData)
// .then(() => {
// success($q, "");
// })
// .catch((e) => {
// messageError($q, e);
// })
// .finally(async () => {
// hideLoader();
// clickBack();
// });
};
const clickBack = () => {
router.push(`/discipline/channel`);
};
</script>
<template>
<div class="col-xs-12 col-sm-12 col-md-11">
<div class="toptitle col-12 row items-center">
<q-btn
icon="mdi-arrow-left"
unelevated
round
dense
flat
color="primary"
class="q-mr-sm"
@click="clickBack"
/>
{{ edit ? "ช่องทางการร้องเรียน" : "เพิ่มช่องทางการร้องเรียน" }}
</div>
<q-form ref="myForm">
<div class="col-12">
<q-card bordered>
<div class="col-12 row q-col-gutter-md q-pa-md">
<div class="col-xs-12 col-sm-12 row">
<q-separator />
<div class="col-12 row q-pa-sm q-col-gutter-sm">
<q-input
class="col-12"
dense
outlined
v-model="channel"
label="กรอกชื่อช่องทาง"
:rules="[(val:string) => !!val || `${'กรุณากรอกชื่อช่องทาง'}`]"
/>
</div>
</div>
</div>
<q-separator />
<q-separator />
<div class="row col-12 q-pa-sm">
<q-space />
<q-btn
flat
round
color="public"
@click="checkSave"
icon="mdi-content-save-outline"
>
<q-tooltip>{{ edit ? "แก้ไขข้อมูล" : "บันทึกข้อมูล" }}</q-tooltip>
</q-btn>
</div>
</q-card>
</div>
</q-form>
</div>
</template>

View file

@ -1,18 +1,41 @@
const complaintMain = () => import("@/modules/11_discipline/components/1_Complaint/MainPage.vue")
const factsMain = () => import("@/modules/11_discipline/components/2_InvestigateFacts/MainPage.vue")
const investigatefactsAdd = () => import("@/modules/11_discipline/components/2_InvestigateFacts/investigatefactsAdd.vue")
const disciplinaryMain = () => import("@/modules/11_discipline/components/3_InvestigateDisciplinary/MainPage.vue")
const oredrMain = () => import("@/modules/11_discipline/components/4_Order/MainPage.vue")
const report = () => import("@/modules/11_discipline/components/5_Report/MainPage.vue")
const directorMain = () => import("@/modules/11_discipline/components/ุ6_Information/Director/MainPage.vue")
const channelMain = () => import("@/modules/11_discipline/components/ุ6_Information/Channel/MainPage.vue")
const complaintAdd = () => import("@/modules/11_discipline/components/1_Complaint/AddComplaintPage.vue")
const reportType = () => import('@/modules/11_discipline/components/5_Report/reportDetail.vue')
const complaintMain = () =>
import("@/modules/11_discipline/components/1_Complaint/MainPage.vue");
const factsMain = () =>
import("@/modules/11_discipline/components/2_InvestigateFacts/MainPage.vue");
const investigatefactsAdd = () =>
import(
"@/modules/11_discipline/components/2_InvestigateFacts/investigatefactsAdd.vue"
);
const disciplinaryMain = () =>
import(
"@/modules/11_discipline/components/3_InvestigateDisciplinary/MainPage.vue"
);
const oredrMain = () =>
import("@/modules/11_discipline/components/4_Order/MainPage.vue");
const report = () =>
import("@/modules/11_discipline/components/5_Report/MainPage.vue");
const directorMain = () =>
import(
"@/modules/11_discipline/components/ุ6_Information/Director/MainPage.vue"
);
const channelMain = () =>
import(
"@/modules/11_discipline/components/ุ6_Information/Channel/MainPage.vue"
);
const complaintAdd = () =>
import("@/modules/11_discipline/components/1_Complaint/AddComplaintPage.vue");
const reportType = () =>
import("@/modules/11_discipline/components/5_Report/reportDetail.vue");
const InvestigateDisciplinaryAdd = () =>
import(
"@/modules/11_discipline/components/3_InvestigateDisciplinary/addInvestigate.vue"
);
const channelAdd = () =>
import(
"@/modules/11_discipline/components/ุ6_Information/Channel/addChannel.vue"
);
const orderPage = () => import("@/modules/11_discipline/components/4_Order/OrderPage.vue")
export default [
{
path: "/discipline/complaints",
@ -55,8 +78,8 @@ export default [
},
},
{
path: "/discipline/order",
name: "/discipline-order",
path: "/discipline-order",
name: "/disciplineorder",
component: oredrMain,
meta: {
Auth: true,
@ -74,25 +97,25 @@ export default [
Role: "coin",
},
},
{
path: "/discipline/report/:type",
name: "/discipline-reportType",
component: reportType,
meta: {
Auth: true,
Key: [11.5],
Role: "coin",
},
{
path: "/discipline/report/:type",
name: "/discipline-reportType",
component: reportType,
meta: {
Auth: true,
Key: [11.5],
Role: "coin",
},
},
{
path: "/discipline/director",
name: "/discipline-director",
component: directorMain,
meta: {
Auth: true,
Key: [11.6],
Role: "coin",
},
{
path: "/discipline/director",
name: "/discipline-director",
component: directorMain,
meta: {
Auth: true,
Key: [11.6],
Role: "coin",
},
},
{
path: "/discipline/director",
@ -134,4 +157,24 @@ export default [
Role: "coin",
},
},
{
path: "/discipline/channel/add",
name: "/discipline-channelAdd",
component: channelAdd,
meta: {
Auth: true,
Key: [11.2],
Role: "coin",
},
},
{
path: "/discipline-order/add",
name: "/disciplineorder-add",
component: orderPage,
meta: {
Auth: true,
Key: [11.4],
Role: "coin",
},
},
];

View file

@ -1,9 +1,12 @@
import { defineStore } from "pinia";
import { ref } from "vue";
import type { DataOption } from "../interface/index/Main";
export const useComplainstDataStore = defineStore("complainst", () => {
const rows = ref<any>([])
const optionListName = ref<any>([])
const optionListName = ref<any>([{}])
function fectComplainst(data: any) {
let datalist = data.map((e: any) => ({
@ -19,13 +22,57 @@ export const useComplainstDataStore = defineStore("complainst", () => {
}
function selectComplainantTpye(list: any) {
console.log(list);
optionListName.value = list
}
const complainantoptionsMain = ref<DataOption[]>()
const complainantoptions = ref<DataOption[]>()
const agencytoptionsMain = ref<DataOption[]>()
const agencytoptions = ref<DataOption[]>()
function fectOptioin(complainantoptions: any, agencytoptions: any) {
complainantoptionsMain.value = complainantoptions
agencytoptionsMain.value = agencytoptions
}
function filterSelector(val: any, update: Function, type: string) {
console.log(val, type);
let data: DataOption[] | undefined = undefined;
let filter: DataOption[] | undefined = undefined;
if (type == "filtercomplainantType") {
data = complainantoptionsMain.value
} else if (type == "filteragencytoptions") {
data = agencytoptionsMain.value
}
if (val == "") {
update(() => {
filter = data;
});
} else {
update(() => {
if (data) {
filter = data.filter(
(e) => e.name.search(val) !== -1
);
}
});
}
if (filter) {
if (type == "filtercomplainantType") {
complainantoptions.value = filter
} else if (type = "filteragencytoptions") {
agencytoptions.value = filter
}
}
}
return {
rows,
optionListName,
fectComplainst,
selectComplainantTpye
selectComplainantTpye,
filterSelector,
fectOptioin,
complainantoptions,
agencytoptions,
}
})

View file

@ -0,0 +1,24 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useOrderStore = defineStore("order", () => {
const rows = ref<any>([])
async function fecthOrder(data: any) {
let datalist = data.map((e: any) => ({
subject: e.subject,
ordernumber: e.ordernumber,
dateOrder: e.dateOrder,
orderby: e.orderby,
signer: e.signer,
statusorder: e.statusorder
}))
rows.value = datalist
}
return {
rows,
fecthOrder
}
})