mirror of
https://github.com/ZeroCatDev/Classworks.git
synced 2025-12-08 13:49:37 +00:00
Merge pull request #22 from ZeroCatDev/copilot/fix-notification-bug
Fix notification deletion: save {} instead of [] when list is empty
This commit is contained in:
commit
a5cd6bcd08
@ -681,7 +681,9 @@ export default {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
this.persistentNotifications = this.persistentNotifications.filter(n => n.id !== id)
|
this.persistentNotifications = this.persistentNotifications.filter(n => n.id !== id)
|
||||||
await dataProvider.saveData('notification-list', this.persistentNotifications)
|
// 当通知列表为空时,保存空对象 {} 而不是空数组 [],因为后端不接受空数组
|
||||||
|
const dataToSave = this.persistentNotifications.length > 0 ? this.persistentNotifications : {}
|
||||||
|
await dataProvider.saveData('notification-list', dataToSave)
|
||||||
this.$message?.success('已删除')
|
this.$message?.success('已删除')
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error('删除失败', e)
|
console.error('删除失败', e)
|
||||||
|
|||||||
@ -2066,7 +2066,9 @@ export default {
|
|||||||
},
|
},
|
||||||
async removePersistentNotification(id) {
|
async removePersistentNotification(id) {
|
||||||
this.persistentNotifications = this.persistentNotifications.filter(n => n.id !== id);
|
this.persistentNotifications = this.persistentNotifications.filter(n => n.id !== id);
|
||||||
await dataProvider.saveData('notification-list', this.persistentNotifications);
|
// 当通知列表为空时,保存空对象 {} 而不是空数组 [],因为后端不接受空数组
|
||||||
|
const dataToSave = this.persistentNotifications.length > 0 ? this.persistentNotifications : {};
|
||||||
|
await dataProvider.saveData('notification-list', dataToSave);
|
||||||
this.notificationDetailDialog = false;
|
this.notificationDetailDialog = false;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user