import { httpFetch } from '../../request' export default { getPic(songInfo) { const requestObj = httpFetch( 'http://media.store.kugou.com/v1/get_res_privilege', { method: 'POST', headers: { 'KG-RC': 1, 'KG-THash': 'expand_search_manager.cpp:852736169:451', 'User-Agent': 'KuGou2012-9020-ExpandSearchManager', }, body: { appid: 1001, area_code: '1', behavior: 'play', clientver: '9020', need_hash_offset: 1, relate: 1, resource: [ { album_audio_id: songInfo.songmid, album_id: songInfo.albumId, hash: songInfo.hash, id: 0, name: `${songInfo.singer} - ${songInfo.name}.mp3`, type: 'audio', }, ], token: '', userid: 2626431536, vip: 1, }, } ) requestObj.promise = requestObj.promise.then(({ body }) => { if (body.error_code !== 0) return Promise.reject('图片获取失败') let info = body.data[0].info return info.image.replace('{size}', info.imgsize[0]) }) return requestObj }, }