mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-04-14 14:50:50 +08:00
10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
import request from "@/utils/request";
|
|
import { ISearchDetail } from "@/type/search";
|
|
|
|
// 搜索内容
|
|
export const getSearch = (keywords: any) => {
|
|
return request.get<ISearchDetail>("/search", {
|
|
params: { keywords: keywords, type: 1018 },
|
|
});
|
|
};
|