feat: 修改acme删除接口为post

This commit is contained in:
zhengkunwang223
2022-12-22 10:30:32 +08:00
committed by zhengkunwang223
parent 198db6ddb5
commit fe8601f753
6 changed files with 15 additions and 8 deletions

View File

@@ -103,8 +103,8 @@ export const CreateAcmeAccount = (req: Website.AcmeAccountCreate) => {
return http.post<Website.AcmeAccount>(`/websites/acme`, req);
};
export const DeleteAcmeAccount = (id: number) => {
return http.delete<any>(`/websites/acme/${id}`);
export const DeleteAcmeAccount = (req: Website.DelReq) => {
return http.post<any>(`/websites/acme/del`, req);
};
export const SearchSSL = (req: ReqPage) => {