mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-14 14:50:50 +08:00
13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
import request from '@/utils/request';
|
|
|
|
interface IParams {
|
|
keywords: string;
|
|
type: number;
|
|
}
|
|
// 搜索内容
|
|
export const getSearch = (params: IParams) => {
|
|
return request.get<any>('/cloudsearch', {
|
|
params,
|
|
});
|
|
};
|