fix: 🐛 修复deleteArticle api错误

Former-commit-id: 295e2c41747602e43bf50121d033cdcacfec100b
This commit is contained in:
Jachin
2023-08-09 11:15:57 +08:00
parent ee68c1f13f
commit e6500ca15a

View File

@@ -83,6 +83,6 @@ export function deleteArticle(id: number) {
return request({
url: "/api/v1/article/delete",
method: "post",
params: { id },
data: { id },
});
}