mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-27 06:41:12 +00:00
style: 统一字符串引号为双引号并优化代码格式
将单引号字符串统一改为双引号 调整部分组件代码格式和样式 移除空行和冗余代码
This commit is contained in:
@@ -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;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user