fix: 修改oss接口不会动态更改的问题

This commit is contained in:
奔跑的面条
2022-05-31 11:18:34 +08:00
parent 7f2344c82c
commit a89164f885
18 changed files with 113 additions and 41 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ export const post = (url: string, data?: object, headersType?: string) => {
})
}
export const put = (url: string, data?: object, headersType?: string) => {
export const put = (url: string, data?: object, headersType?: ContentTypeEnum) => {
return axiosInstance({
url: url,
method: RequestHttpEnum.PUT,