bug fixed

This commit is contained in:
cxc
2022-11-25 17:30:39 +08:00
parent 28808f6024
commit d4778207c7
38 changed files with 1623 additions and 623 deletions

View File

@ -91,6 +91,13 @@ export function searchAchievementDetail(id) {
method: "get",
});
}
// 客户端实验室搜索结果详情
export function searchLaboratoryDetail(id) {
return request({
url: `/search/laboratory/${id}`,
method: "get",
});
}
// 客户端专家搜索结果详情
export function searchExpertDetail(id) {
return request({
@ -222,3 +229,10 @@ export function countAchievementByArea(cityCode) {
},
});
}
// 获取尾部导航
export function getCasNavigation() {
return request({
url: "/app/about/getCasNavigation",
method: "get",
});
}