Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m53s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m53s
This commit is contained in:
commit
efaaa85fcf
1 changed files with 33 additions and 13 deletions
|
|
@ -35,6 +35,7 @@ const props = defineProps({
|
|||
const pageId = ref<string>(route.params.id as string);
|
||||
const keyword = ref<string>("");
|
||||
const isAct = ref<boolean>(false);
|
||||
const isAllDirector = ref<boolean>(false);
|
||||
|
||||
const total = ref<number>(0);
|
||||
const totalList = ref<number>(1);
|
||||
|
|
@ -105,6 +106,7 @@ async function getData() {
|
|||
page: pagination.value.page,
|
||||
keyword: keyword.value,
|
||||
isAct: isAct.value,
|
||||
isAllDirector: isAllDirector.value,
|
||||
keycloakId: props.keycloakUserId,
|
||||
type:
|
||||
props.profileType?.toLocaleLowerCase() === "officer"
|
||||
|
|
@ -196,6 +198,7 @@ function closeDialog() {
|
|||
modal.value = false;
|
||||
rows.value = [];
|
||||
selected.value = [];
|
||||
isAllDirector.value = false;
|
||||
}
|
||||
|
||||
watch(
|
||||
|
|
@ -231,19 +234,45 @@ watch(
|
|||
<q-card-section>
|
||||
<div class="row q-col-gutter-sm">
|
||||
<div class="col-12">
|
||||
<div class="row q-gutter-x-xs">
|
||||
<div class="row items-center q-mb-sm">
|
||||
<q-input
|
||||
dense
|
||||
outlined
|
||||
label="ค้นหา"
|
||||
v-model="keyword"
|
||||
style="width: 300px"
|
||||
class="col-grow"
|
||||
style="max-width: 400px"
|
||||
@keydown.enter.prevent="onSearchData()"
|
||||
>
|
||||
<template v-slot:append>
|
||||
<q-icon name="search"></q-icon>
|
||||
</template>
|
||||
</q-input>
|
||||
|
||||
<q-space />
|
||||
|
||||
<q-btn
|
||||
color="primary"
|
||||
icon="search"
|
||||
label="ค้นหา"
|
||||
class="q-px-md"
|
||||
@click.prevent="onSearchData"
|
||||
style="width: 150px"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="row items-center q-gutter-x-md text-subtitle2 text-grey-8"
|
||||
>
|
||||
<q-checkbox
|
||||
keep-color
|
||||
v-model="isAllDirector"
|
||||
label="หัวหน้าทั้งหน่วยงาน"
|
||||
color="primary"
|
||||
@update:model-value="onSearchData"
|
||||
>
|
||||
<q-tooltip>หัวหน้าทั้งหน่วยงาน</q-tooltip>
|
||||
</q-checkbox>
|
||||
<q-checkbox
|
||||
keep-color
|
||||
v-model="isAct"
|
||||
|
|
@ -251,20 +280,11 @@ watch(
|
|||
color="primary"
|
||||
@update:model-value="onSearchData"
|
||||
>
|
||||
<q-tooltip>แสดงเฉพาะรักษาการแทน </q-tooltip>
|
||||
<q-tooltip>แสดงเฉพาะรักษาการแทน</q-tooltip>
|
||||
</q-checkbox>
|
||||
<q-space />
|
||||
<q-btn
|
||||
color="primary"
|
||||
icon="search"
|
||||
label="ค้นหา"
|
||||
class="q-pa-sm"
|
||||
@click.prevent="onSearchData"
|
||||
style="width: 200px"
|
||||
>
|
||||
</q-btn>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-12 text-red">
|
||||
{{
|
||||
props.type == "APPROVER"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue