客户端产品匹配
This commit is contained in:
@ -8,6 +8,7 @@ export const demandList = (params) => {
|
||||
params,
|
||||
});
|
||||
};
|
||||
|
||||
// 新增企业服务需求
|
||||
export const insertDemand = (data) => {
|
||||
return request({
|
||||
@ -35,6 +36,24 @@ export const insertTechnologyDemand = (data) => {
|
||||
});
|
||||
};
|
||||
|
||||
// 企业服务需求详情
|
||||
export const getDemand = (params) => {
|
||||
return request({
|
||||
url: `/app/getDemand`,
|
||||
method: "GET",
|
||||
params,
|
||||
});
|
||||
};
|
||||
|
||||
// 企业服务需求详情
|
||||
export const updateDemand = (data) => {
|
||||
return request({
|
||||
url: `/app/updateDemand`,
|
||||
method: "POST",
|
||||
data,
|
||||
});
|
||||
};
|
||||
|
||||
// 企业技术需求详情
|
||||
export const getTechnologyDemand = (params) => {
|
||||
return request({
|
||||
@ -43,6 +62,7 @@ export const getTechnologyDemand = (params) => {
|
||||
params,
|
||||
});
|
||||
};
|
||||
|
||||
// 修改企业技术需求详情
|
||||
export const updateTechnologyDemand = (data) => {
|
||||
return request({
|
||||
@ -51,6 +71,7 @@ export const updateTechnologyDemand = (data) => {
|
||||
data,
|
||||
});
|
||||
};
|
||||
|
||||
// 删除企业技术需求
|
||||
export const deleteTechnologyDemand = (ids) => {
|
||||
return request({
|
||||
|
||||
@ -49,7 +49,7 @@ export function logout() {
|
||||
// 获取验证码
|
||||
export function getCodeImg() {
|
||||
return request({
|
||||
url: "/captchaImage",
|
||||
url: "/app/captchaImage",
|
||||
headers: {
|
||||
isToken: false,
|
||||
},
|
||||
|
||||
@ -77,13 +77,35 @@ export function searchPatentDetail(id) {
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
// 客户端专利搜索结果详情
|
||||
// 客户端企业搜索结果详情
|
||||
export function searchEnterpriseDetail(id) {
|
||||
return request({
|
||||
url: `/search/enterprise/${id}`,
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
// 客户端专家搜索结果详情
|
||||
export function searchExpertDetail(id) {
|
||||
return request({
|
||||
url: `/search/expert/${id}`,
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
// 客户端服务需求搜索结果详情
|
||||
export function searchServiceDemandDetail(id) {
|
||||
return request({
|
||||
url: `/search/casDemand/${id}`,
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
|
||||
// 客户端服务需求搜索结果详情
|
||||
export function searchTechnologyDemandDetail(id) {
|
||||
return request({
|
||||
url: `/search/technologyDemand/${id}`,
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
|
||||
// 获取[省]专家分布
|
||||
export function countExpertByProvince() {
|
||||
|
||||
Reference in New Issue
Block a user