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

134 lines
3.3 KiB
Vue
Raw Normal View History

2023-12-14 10:43:13 +07:00
<script setup lang="ts">
2023-12-20 12:43:08 +07:00
import { onMounted, ref, watch } 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 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 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);
const data = res.data.result;
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>
<Table
style="max-height: 80vh"
:rows="store.rows"
:columns="store.columns"
:visible-columns="store.visibleColumns"
v-model:inputfilter="filter"
v-model:inputvisible="store.visibleColumns"
:pagination="initialPagination"
:nornmalData="true"
:paging="true"
:titleText="''"
:page="page"
:pageSize="pageSize"
:maxPage="maxPage"
>
<template #columns="props">
<q-tr :props="props" class="cursor-pointer">
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>
</Table>
</div>
</q-card>
</template>
<style></style>