Compare commits

..

No commits in common. "f7f4da258311a63ebff728a05ca6d1be1b15d5ff" and "dca9102a8d8eff727b315b6433cbf1b145108719" have entirely different histories.

View file

@ -172,13 +172,13 @@ const doLogout = () => {
);
};
const clickDelete = async (id: string, index: number | string) => {
const clickDelete = async (id: string, index: number) => {
dialogRemove($q, async () => {
// showLoader();
await http
.delete(config.API.msgId(id))
.then(() => {
notiList.value.splice(Number(index), 1);
notiList.value.splice(index, 1);
totalInbox.value--;
totalNoti.value--;
success($q, "ลบข้อมูลสำเร็จ");
@ -772,10 +772,10 @@ watch(
<q-footer class="bg-grey-1 text-dark q-pa-md">
<FooterContact />
</q-footer>
<DialogResetPass v-model="modalResetPass" />
<DialogDebug v-model:modal="modalDebug" />
</q-layout>
<DialogResetPass v-model="modalResetPass" />
<DialogDebug v-model:modal="modalDebug" />
</template>
<style>