bugfix and performance improvements
This commit is contained in:
@ -45,3 +45,28 @@ export const deleteLabPatentByIds = (ids) => {
|
||||
method: "DELETE",
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 实验室未绑定专家列表
|
||||
* @param params
|
||||
* @return {*}
|
||||
*/
|
||||
export const selectNotBindLaboratory = (params) => {
|
||||
return request({
|
||||
url: `/app/laboratory/selectNotBindLaboratory`,
|
||||
method: "GET",
|
||||
params,
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 实验室专家绑定
|
||||
* @param expertId
|
||||
* @return {*}
|
||||
*/
|
||||
export const bindExpert = (expertId) => {
|
||||
return request({
|
||||
url: `/app/laboratory/bindExpert/${expertId}`,
|
||||
method: "GET",
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user