实验室入驻

This commit is contained in:
熊丽君
2022-02-23 09:01:46 +08:00
parent ad47786aac
commit daa2dd46d6
3 changed files with 277 additions and 3 deletions

View File

@ -40,11 +40,20 @@ export function expert(data) {
data
});
}
// 专家入驻
// 科研机构入驻
export function research(data) {
return request({
url: '/enterprise/v1/settled/research',
method:'post',
data
});
}
// 实验室入驻
export function laboratory(data) {
return request({
url: '/enterprise/v1/settled/laboratory',
method:'post',
data
});
}