update เกษียณ + ปิด route หน้ารายละเอียดถึงแก่กรรม

This commit is contained in:
Warunee Tamkoo 2023-07-25 21:14:52 +07:00
parent d08b3625f3
commit 97b5e63813
4 changed files with 36 additions and 39 deletions

View file

@ -246,15 +246,15 @@ const visibleColumns2 = ref<string[]>(["no", "name", "retireNumber"]);
const getYear = () => {
yearOptions.length = 0;
yearOptions.push(currentYear + 543);
console.log(yearOptions);
// console.log(yearOptions);
get(type.value, currentYear);
fiscalyear.value = currentYear + 543;
};
const get = async (type: string, year: string) => {
const get = async (type: string, year: any) => {
await http
.get(config.API.retirement(type, year))
.then((res) => {
console.log(res);
// console.log(res);
rows.value = [];
let data = res.data.result;
@ -410,7 +410,7 @@ const paginationLabel = (start: string, end: string, total: string) => {
else return start + "-" + end + " ใน " + total;
};
const nextPage = (prop: any) => {
console.log(prop.id);
// console.log(prop.id);
router.push(`/retirement/listretire/${prop.id}/${type.value}`);
};