(url: string, params: object = {}, config?: AxiosRequestConfig)
| 191 | return this.service.post(url, params, _object); |
| 192 | } |
| 193 | upload<T>(url: string, params: object = {}, config?: AxiosRequestConfig): Promise<ResultData<T>> { |
| 194 | return this.service.post(url, params, config); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | export default new RequestHttp(config); |
no test coverage detected