feat: 网站日志页面优化

This commit is contained in:
zhengkunwang223
2022-12-30 17:39:17 +08:00
committed by zhengkunwang223
parent 48054b05ce
commit 28de822917
13 changed files with 170 additions and 34 deletions

View File

@@ -15,6 +15,10 @@ export const OpWebsite = (req: Website.WebSiteOp) => {
return http.post<any>(`/websites/operate`, req);
};
export const OpWebsiteLog = (req: Website.WebSiteOpLog) => {
return http.post<Website.WebSiteLog>(`/websites/log`, req);
};
export const BackupWebsite = (req: Website.BackupReq) => {
return http.post(`/websites/backup`, req);
};