hide loop noti total
This commit is contained in:
parent
95c577b647
commit
ccb6d1b4eb
1 changed files with 7 additions and 7 deletions
|
|
@ -233,7 +233,7 @@ const activeBtn = () => {
|
|||
};
|
||||
|
||||
const isSsoToken = ref<boolean>(false);
|
||||
const interval = ref<any>(null);
|
||||
// const interval = ref<any>(null);
|
||||
/**
|
||||
* เมื่อเริ่มต้นโปรแกรมให้ฟัง event resize และ function myEventHandler
|
||||
* set function myEventHandler เพราะ state ยังไม่เซ็ท , state เซ็ทเมื่อ หน้าจอเริ่ม ขยับหน้าจอ
|
||||
|
|
@ -259,9 +259,9 @@ onMounted(async () => {
|
|||
|
||||
fetchmsgNoread();
|
||||
// fetch noread noti every 15 seconds
|
||||
interval.value = setInterval(() => {
|
||||
fetchmsgNoread();
|
||||
}, 15000);
|
||||
// interval.value = setInterval(() => {
|
||||
// fetchmsgNoread();
|
||||
// }, 15000);
|
||||
|
||||
myEventHandler(null, false);
|
||||
window.addEventListener("resize", (e: any) => {
|
||||
|
|
@ -276,9 +276,9 @@ onUnmounted(() => {
|
|||
window.removeEventListener("resize", (e: any) => {
|
||||
myEventHandler(e, true);
|
||||
});
|
||||
if (interval.value) {
|
||||
clearInterval(interval.value);
|
||||
}
|
||||
// if (interval.value) {
|
||||
// clearInterval(interval.value);
|
||||
// }
|
||||
});
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue