This commit is contained in:
2023-06-19 17:25:29 +08:00
parent 5940dfa4aa
commit 8aa883ecc2
183 changed files with 21841 additions and 18453 deletions

View File

@ -21,3 +21,20 @@ export const deleteTechnologyDemand = (ids) =>
url: `/business/dataReview/deleteTechnologyDemand/${ids}`,
method: "DELETE",
});
/**
* 企业技术需求指派经纪人
* @param demandId
* @param brokerId
* @param brokerName
* @return {*}
*/
export const dataReviewAppointBroker = (
demandId, // 企业技术需求id
brokerId, // 经纪人id
brokerName // 经纪人姓名 // 获取企业技术需求详情
) =>
request({
url: `/business/dataReview/appointBroker/${demandId}/${brokerId}/${brokerName}`,
method: "POST",
});