| 123456789101112131415161718192021 | import request from '@/sheep/request';// TODO 芋艿:小程序直播还不支持export default {  //小程序直播  mplive: {    getRoomList: (ids) =>      request({        url: 'app/mplive/getRoomList',        method: 'GET',        params: {          ids: ids.join(','),        }      }),    getMpLink: () =>      request({        url: 'app/mplive/getMpLink',        method: 'GET'      }),  },};
 |