feat:添加文件上传进度条

This commit is contained in:
96607667.zh
2022-02-08 17:52:35 +08:00
parent 01216acc5d
commit f5b09b8581
4 changed files with 64 additions and 20 deletions

View File

@@ -48,8 +48,8 @@ class Api {
* 操作该权限即请求对应的url
* @param {Object} param 请求该权限的参数
*/
request(param: any = null): Promise<any> {
return request.send(this, param);
request(param: any = null, options: any = null): Promise<any> {
return request.send(this, param, options);
}
/**