This commit is contained in:
algerkong
2021-07-27 16:01:33 +08:00
parent be721628d0
commit 7f5de1a6a9
3 changed files with 95 additions and 66 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { ISearchDetail } from "@/type/search";
// 搜索内容
export const getSearch = (keywords: any) => {
return request.get<ISearchDetail>("/cloudsearch", {
return request.get<ISearchDetail>("/search", {
params: { keywords: keywords, type: 1018 },
});
};