2022-01-28 13:45:53 +08:00
|
|
|
import request from '@/utils/request';
|
|
|
|
|
|
|
|
// 首页每一项
|
|
|
|
export function identity() {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/config/identity'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// 当前状态
|
|
|
|
export function settled() {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/settled'
|
|
|
|
});
|
|
|
|
}
|
2022-02-08 09:06:10 +08:00
|
|
|
// 公司企业入驻
|
2022-01-28 13:45:53 +08:00
|
|
|
export function company(data) {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/settled/company',
|
|
|
|
method:'post',
|
|
|
|
data
|
|
|
|
});
|
|
|
|
}
|
2022-02-08 09:06:10 +08:00
|
|
|
// 所属单位
|
|
|
|
export function researchSelect() {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/manage/research/select',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// 所属单位>实验室
|
|
|
|
export function laboratorySelect() {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/manage/research/laboratory',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
// 专家入驻
|
|
|
|
export function expert(data) {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/settled/expert',
|
|
|
|
method:'post',
|
|
|
|
data
|
|
|
|
});
|
2022-02-10 09:54:15 +08:00
|
|
|
}
|
2022-02-23 09:01:46 +08:00
|
|
|
// 科研机构入驻
|
2022-02-10 09:54:15 +08:00
|
|
|
export function research(data) {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/settled/research',
|
|
|
|
method:'post',
|
|
|
|
data
|
|
|
|
});
|
2022-02-23 09:01:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 实验室入驻
|
|
|
|
export function laboratory(data) {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/settled/laboratory',
|
|
|
|
method:'post',
|
|
|
|
data
|
|
|
|
});
|
2022-02-23 16:42:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 实验室入驻
|
|
|
|
export function agent(data) {
|
|
|
|
return request({
|
|
|
|
url: '/enterprise/v1/settled/agent',
|
|
|
|
method:'post',
|
|
|
|
data
|
|
|
|
});
|
2022-02-08 09:06:10 +08:00
|
|
|
}
|