style: 统一字符串引号为双引号并优化代码格式

将单引号字符串统一改为双引号
调整部分组件代码格式和样式
移除空行和冗余代码
This commit is contained in:
zhangtao
2025-12-03 01:07:45 +08:00
parent 871b5c37e4
commit 0766c8aa7d
17 changed files with 57 additions and 43 deletions
@@ -113,7 +113,7 @@ function handleMarkAllAsRead() {
const ids = noticeList.value
.map((item) => item.id)
.filter((id): id is number => id !== undefined);
NoticeAPI.batchNotice({ ids, status: '1' }).then(async () => {
NoticeAPI.batchNotice({ ids, status: "1" }).then(async () => {
await noticeStore.getNotice();
noticeList.value = noticeStore.noticeList;
});