feat: 数据更改

This commit is contained in:
wwz
2025-04-09 16:26:02 +08:00
parent d6a576f729
commit 0b81b8355e
9 changed files with 108 additions and 109 deletions

View File

@@ -34,7 +34,7 @@ const Api = {
},
edit(data: any) {
return request<any>({
url: `${baseURL}`,
url: `${baseURL}/read`,
method: "put",
data,
});
@@ -42,7 +42,7 @@ const Api = {
delete(id: string | number) {
return request<any>({
url: `${baseURL}/` + id,
url: `${baseURL}/syncNotice/` + id,
method: "delete",
});
},