This commit is contained in:
make
2025-04-13 21:14:50 +08:00
parent 3c1df922e1
commit e98d43564b
7 changed files with 19 additions and 4 deletions

View File

@@ -31,6 +31,14 @@ export const uploadExcel = (params: SiteList.saveParams) => {
return http.post<ResPage<ResultData>>('/site/domain/upload', params);
};
/**
* @name 缓存清理
*/
export const cacheFlush = (params: SiteList.saveParams) => {
return http.post<ResPage<ResultData>>('/system/cache/flush', params);
};
/**