|
@ -14,6 +14,7 @@ const Business = `${greenvalley}/Business`; // 衍生企业和合作伙伴查询 |
|
|
const carousel = `${greenvalley}/carousel`; // 轮播图相关接口
|
|
|
const carousel = `${greenvalley}/carousel`; // 轮播图相关接口
|
|
|
const page = `${greenvalley}/page`; // 页面详情相关接口
|
|
|
const page = `${greenvalley}/page`; // 页面详情相关接口
|
|
|
const achInstr = `${greenvalley}/achInstr`; // 轮播图相关接口
|
|
|
const achInstr = `${greenvalley}/achInstr`; // 轮播图相关接口
|
|
|
|
|
|
const service = `${greenvalley}/service`; // 服务相关接口
|
|
|
|
|
|
|
|
|
// websocket基础地址
|
|
|
// websocket基础地址
|
|
|
export const WS_BASE_URL = msgUrl; |
|
|
export const WS_BASE_URL = msgUrl; |
|
@ -53,14 +54,21 @@ export const frontSearchCompany = params => axios.post(`${Business}/FrontSearchC |
|
|
|
|
|
|
|
|
// 介绍页面详情查询
|
|
|
// 介绍页面详情查询
|
|
|
export const getPageDetail = params => axios.post(`${page}/detail`, params); |
|
|
export const getPageDetail = params => axios.post(`${page}/detail`, params); |
|
|
export const FrontSearchCompany = params => axios.post(`${Business}/FrontSearchCompany`, params); |
|
|
|
|
|
// 分类查询
|
|
|
// 分类查询
|
|
|
export const selModel = params => axios.post(`${achInstr}/selModel`, params); |
|
|
export const selModel = params => axios.post(`${achInstr}/selModel`, params); |
|
|
|
|
|
|
|
|
// 仪器列表查询
|
|
|
// 仪器列表查询
|
|
|
export const selInstrument = params => axios.post(`${achInstr}/selInstrument`, params); |
|
|
export const selInstrument = params => axios.post(`${achInstr}/selInstrument`, params); |
|
|
|
|
|
|
|
|
// 研究院(实验室)列表查询
|
|
|
// 研究院(实验室)列表查询
|
|
|
export const searchFront = params => axios.post(`${greenvalley}/institute/searchFront`, params); |
|
|
export const searchFront = params => axios.post(`${greenvalley}/institute/searchFront`, params); |
|
|
|
|
|
|
|
|
// 成果列表查询
|
|
|
// 成果列表查询
|
|
|
export const selRes = params => axios.post(`${achInstr}/selRes`, params); |
|
|
export const selRes = params => axios.post(`${achInstr}/selRes`, params); |
|
|
|
|
|
|
|
|
// 成果详情查询
|
|
|
// 成果详情查询
|
|
|
export const selResMes = params => axios.post(`${achInstr}/selResMes`, params); |
|
|
export const selResMes = params => axios.post(`${achInstr}/selResMes`, params); |
|
|
|
|
|
|
|
|
|
|
|
// 查询用户购物车
|
|
|
|
|
|
export const SearchCar = params => axios.post(`${service}/SearchCar`, params); |
|
|