feat: 完成 mysql 导入备份功能

This commit is contained in:
ssongliu
2022-11-08 19:03:38 +08:00
committed by ssongliu
parent 8431f49c47
commit c49d2ef243
12 changed files with 486 additions and 13 deletions

View File

@@ -90,7 +90,7 @@ class RequestHttp {
download<BlobPart>(url: string, params?: object, _object = {}): Promise<BlobPart> {
return this.service.post(url, params, _object);
}
upload<T>(url: string, params: object = {}, config: AxiosRequestConfig): Promise<T> {
upload<T>(url: string, params: object = {}, config?: AxiosRequestConfig): Promise<T> {
return this.service.post(url, params, config);
}
}