尺寸调整

This commit is contained in:
simple321vip
2022-05-04 19:21:42 +08:00
parent 0a2c848fa0
commit 54011befed
4 changed files with 38 additions and 12 deletions
+15
View File
@@ -0,0 +1,15 @@
import request from '../utils/request'
const headers = {
'Content-Type': 'application/json;charsetset=UTF-8'
}
const getAudioInfo = (url: string) => {
return request({
url: '/common/audio-info',
method: 'GET',
params: { url: url },
})
}
export { getAudioInfo }