mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/lyswhut/lx-music-desktop.git
synced 2026-09-20 08:04:00 +08:00
10 lines
316 B
JavaScript
10 lines
316 B
JavaScript
import { httpFatch } from '../../request'
|
|
|
|
export default {
|
|
getPic({ songmid }) {
|
|
const requestObj = httpFatch(`http://artistpicserver.kuwo.cn/pic.web?corp=kuwo&type=rid_pic&pictype=500&size=500&rid=${songmid}`)
|
|
requestObj.promise = requestObj.promise.then(({ body }) => body)
|
|
return requestObj
|
|
},
|
|
}
|