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