feat: 修改菜单位置 证书管理放在二级菜单
This commit is contained in:

committed by
zhengkunwang223

parent
681a0c9106
commit
c7e0e3320a
@@ -98,10 +98,18 @@ export const DeleteSSL = (id: number) => {
|
||||
return http.delete<any>(`/websites/ssl/${id}`);
|
||||
};
|
||||
|
||||
export const GetWebsiteSSL = (websiteId: number) => {
|
||||
return http.get<WebSite.SSL>(`/websites/ssl/${websiteId}`);
|
||||
};
|
||||
|
||||
export const ApplySSL = (req: WebSite.SSLApply) => {
|
||||
return http.post<WebSite.SSLApply>(`/websites/ssl/apply`, req);
|
||||
};
|
||||
|
||||
export const RenewSSL = (req: WebSite.SSLRenew) => {
|
||||
return http.post<any>(`/websites/ssl/renew`, req);
|
||||
};
|
||||
|
||||
export const GetDnsResolve = (req: WebSite.DNSResolveReq) => {
|
||||
return http.post<WebSite.DNSResolve>(`/websites/ssl/resolve`, req);
|
||||
};
|
||||
|
Reference in New Issue
Block a user