Compare commits
No commits in common. "dev" and "v1.1.7" have entirely different histories.
2 changed files with 2 additions and 36 deletions
|
|
@ -758,6 +758,7 @@ onMounted(async () => {
|
||||||
table-class="text-grey-9"
|
table-class="text-grey-9"
|
||||||
row-key="id"
|
row-key="id"
|
||||||
dense
|
dense
|
||||||
|
hide-bottom
|
||||||
bordered
|
bordered
|
||||||
separator="vertical"
|
separator="vertical"
|
||||||
class="custom-header-table-expand"
|
class="custom-header-table-expand"
|
||||||
|
|
|
||||||
|
|
@ -114,7 +114,7 @@ async function getDataNotification(index: number, type: string) {
|
||||||
.get(config.API.msgNotificate + `?page=${index}&pageSize=${15}`)
|
.get(config.API.msgNotificate + `?page=${index}&pageSize=${15}`)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
const response = res.data.result.data;
|
const response = res.data.result.data;
|
||||||
totalInbox.value = res.data.result.total || 0;
|
totalInbox.value = res.data.result.total;
|
||||||
let list: notiType[] = [];
|
let list: notiType[] = [];
|
||||||
if (type === "DEL") {
|
if (type === "DEL") {
|
||||||
notiList.value = [];
|
notiList.value = [];
|
||||||
|
|
@ -405,26 +405,6 @@ onBeforeMount(async () => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
function handleDeleteNotification() {
|
|
||||||
dialogRemove(
|
|
||||||
$q,
|
|
||||||
async () => {
|
|
||||||
try {
|
|
||||||
showLoader();
|
|
||||||
await http.delete(config.API.msgNotificate);
|
|
||||||
await getDataNotification(1, "DEL");
|
|
||||||
success($q, "ลบข้อมูลสำเร็จ");
|
|
||||||
} catch (error) {
|
|
||||||
messageError($q, error);
|
|
||||||
} finally {
|
|
||||||
hideLoader();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"ยืนยันการล้างการแจ้งเตือนทั้งหมด",
|
|
||||||
`ต้องการล้างการแจ้งเตือนทั้งหมด (${totalInbox.value} รายการ) ใช่หรือไม่? การกระทำนี้ไม่สามารถย้อนกลับได้`,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* เมื่อเริ่มต้นโปรแกรมให้ฟัง event resize และ function myEventHandler
|
* เมื่อเริ่มต้นโปรแกรมให้ฟัง event resize และ function myEventHandler
|
||||||
* set function myEventHandler เพราะ state ยังไม่เซ็ท , state เซ็ทเมื่อ หน้าจอเริ่ม ขยับหน้าจอ
|
* set function myEventHandler เพราะ state ยังไม่เซ็ท , state เซ็ทเมื่อ หน้าจอเริ่ม ขยับหน้าจอ
|
||||||
|
|
@ -530,21 +510,6 @@ onUnmounted(() => {
|
||||||
<div class="text-grey-5" style="font-size: 12px">
|
<div class="text-grey-5" style="font-size: 12px">
|
||||||
ทั้งหมด {{ totalInbox }} ข้อความ
|
ทั้งหมด {{ totalInbox }} ข้อความ
|
||||||
</div>
|
</div>
|
||||||
<q-btn
|
|
||||||
v-if="totalInbox !== 0"
|
|
||||||
flat
|
|
||||||
dense
|
|
||||||
no-caps
|
|
||||||
size="12px"
|
|
||||||
color="red-7"
|
|
||||||
icon="mdi-trash-can-outline"
|
|
||||||
label="ล้างทั้งหมด"
|
|
||||||
class="q-ml-sm"
|
|
||||||
aria-label="ล้างการแจ้งเตือนทั้งหมด"
|
|
||||||
@click.stop.prevent="handleDeleteNotification"
|
|
||||||
>
|
|
||||||
<q-tooltip>ล้างการแจ้งเตือนทั้งหมด</q-tooltip>
|
|
||||||
</q-btn>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<q-infinite-scroll
|
<q-infinite-scroll
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue