bug修复
This commit is contained in:
@ -223,8 +223,8 @@
|
||||
|
||||
const viewOpen = ref(false);
|
||||
const viewData = ref({});
|
||||
function handleView(record, num) {
|
||||
viewData.value = {...record, typeId: num};
|
||||
function handleView(record) {
|
||||
viewData.value = {...record};
|
||||
viewOpen.value = true;
|
||||
}
|
||||
function handleViewClose() {
|
||||
@ -385,7 +385,7 @@
|
||||
await setSystemNoticeRead([ids]);
|
||||
} else {
|
||||
await setOaRead([ids]);
|
||||
handleView(record, num)
|
||||
handleView(record)
|
||||
}
|
||||
if (listData.value[num - 1].unreadNum > 0) listData.value[num - 1].unreadNum -= 1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user