hrms-mgt/src/modules/12_evaluatePersonal/views/MainPage.vue

196 lines
4.9 KiB
Vue
Raw Normal View History

2023-12-14 10:43:13 +07:00
<script setup lang="ts">
import { onMounted, ref, watch, useAttrs } from "vue";
2023-12-14 10:43:13 +07:00
import { useQuasar } from "quasar";
import { useRouter } from "vue-router";
import http from "@/plugins/http";
import config from "@/app.config";
2023-12-15 13:30:39 +07:00
import Table from "@/modules/12_evaluatePersonal/components/Table.vue";
2023-12-14 10:43:13 +07:00
import { useCounterMixin } from "@/stores/mixin";
2023-12-15 13:30:39 +07:00
import { useEvalutuonStore } from "@/modules/12_evaluatePersonal/store/Evaluate";
2023-12-14 10:43:13 +07:00
import type { Pagination } from "@/modules/03_recruiting/interface/index/Main";
const $q = useQuasar(); // show dialog
const router = useRouter();
//search data table
const mixin = useCounterMixin();
const store = useEvalutuonStore();
2023-12-14 10:43:13 +07:00
const { showLoader, hideLoader, messageError } = mixin;
const attrs = ref<any>(useAttrs());
2023-12-14 10:43:13 +07:00
const initialPagination = ref<Pagination>({
rowsPerPage: 0,
});
2023-12-20 12:43:08 +07:00
function Detailpage(id: string) {
2023-12-19 15:05:48 +07:00
router.push(`/evaluate/detail/${id}`);
}
2023-12-14 10:43:13 +07:00
2023-12-20 12:43:08 +07:00
const currentPage = ref<number>(1);
const pageSize = ref<number>(10);
2023-12-14 10:43:13 +07:00
const maxPage = ref<number>(1);
2023-12-20 12:43:08 +07:00
const page = ref<number>(1);
2023-12-14 10:43:13 +07:00
const filter = ref<string>("");
2023-12-20 12:43:08 +07:00
const rowsPerPage = ref<number>(10);
/**
*pagination ของตาราง
*/
const pagination = ref({
descending: false,
page: page.value,
rowsPerPage: rowsPerPage.value,
});
watch(
() => currentPage.value,
() => {
rowsPerPage.value = pagination.value.rowsPerPage;
getList();
}
);
watch(
() => pagination.value.rowsPerPage,
() => {
rowsPerPage.value = pagination.value.rowsPerPage;
currentPage.value = 1;
getList();
}
);
function filterFn() {
getList();
}
2023-12-20 12:43:08 +07:00
function getList() {
showLoader();
http
.get(
config.API.evaluationMain(
currentPage.value,
rowsPerPage.value,
filter.value
)
)
.then((res) => {
maxPage.value = Math.ceil(res.data.result.total / rowsPerPage.value);
2023-12-21 11:23:56 +07:00
const data = res.data.result.data;
2023-12-20 12:43:08 +07:00
store.fetchData(data);
})
.catch((e) => {
messageError($q, e);
})
.finally(() => {
hideLoader();
});
}
2023-12-14 10:43:13 +07:00
/**
* งขอมลจำลองไปย store
*/
onMounted(async () => {
2023-12-20 12:43:08 +07:00
getList();
});
2023-12-14 10:43:13 +07:00
</script>
<template>
<div class="toptitle text-dark col-12 row items-center">
รายการคำขอประเม
</div>
<q-card flat bordered class="col-12 q-mt-sm q-pt-sm q-pa-md">
<div class="row col-12 q-col-gutter-sm q-mb-sm">
<q-space />
<q-input
class="col-xs-12 col-sm-3 col-md-2"
id="filterTable"
for="filterTable"
dense
outlined
v-model="filter"
label="ค้นหา"
debounce="300"
@keydown.enter.prevent="filterFn"
>
<template v-slot:append>
<q-icon name="search" />
</template>
</q-input>
<q-select
id="visibleColumns"
for="visibleColumns"
v-model="store.visibleColumns"
multiple
outlined
dense
options-dense
:display-value="$q.lang.table.columns"
emit-value
map-options
:options="store.columns"
option-value="name"
options-cover
class="col-xs-12 col-sm-3 col-md-2"
/>
</div>
2023-12-14 10:43:13 +07:00
<div>
<d-table
ref="table"
2023-12-14 10:43:13 +07:00
:columns="store.columns"
:rows="store.rows"
:filter="filter"
row-key="interrogated"
flat
bordered
2023-12-14 10:43:13 +07:00
:paging="true"
dense
class="custom-header-table"
v-bind="attrs"
:visible-columns="store.visibleColumns"
v-model:pagination="pagination"
2023-12-14 10:43:13 +07:00
>
<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"
style="color: #000000; font-weight: 500"
>
<span class="text-weight-medium">{{ col.label }}</span>
</q-th>
<q-th auto-width></q-th>
</q-tr>
</template>
<template v-slot:body="props">
2023-12-14 10:43:13 +07:00
<q-tr :props="props" class="cursor-pointer">
<q-td auto-width>
<q-icon
v-if="props.row.isDefault === true"
name="mdi-bookmark"
size="xs"
color="primary"
>
<q-tooltip>เวลา Default</q-tooltip>
</q-icon>
</q-td>
2023-12-20 12:43:08 +07:00
<q-td
v-for="col in props.cols"
:key="col.name"
:props="props"
@click="Detailpage(props.row.id)"
>
2023-12-14 10:43:13 +07:00
<div v-if="col.name == 'no'">
{{ props.rowIndex + 1 }}
</div>
<div v-else>
{{ col.value }}
</div>
</q-td>
</q-tr>
</template>
</d-table>
2023-12-14 10:43:13 +07:00
</div>
</q-card>
</template>
<style></style>