สิทธ์ ทดลองงาน

This commit is contained in:
STW_TTTY\stwtt 2024-08-13 17:55:46 +07:00
parent d363b1838a
commit dcfd784c17
17 changed files with 749 additions and 637 deletions

View file

@ -47,6 +47,7 @@ const SummarySurvey = defineAsyncComponent(
const router = useRouter();
const route = useRoute();
const checkRoutePermisson = ref<boolean>(route.name == "probationFormDetail");
const drawer = ref<boolean>(true);
const activeTab = ref<string>("");
const personalId = ref<string>(route.params.personalId.toString());
@ -62,7 +63,7 @@ function changeTab(tab: string){
/** ปุ่มกลับ */
function clickBack(){
router.push(`/probation/detail/${personalId.value}`);
router.go(-1)
DataStore.mainTab = "tab1";
};