research update

This commit is contained in:
2023-06-09 17:31:39 +08:00
parent a76aa5eddb
commit ead6700f2c
34 changed files with 4722 additions and 983 deletions

View File

@ -3,7 +3,7 @@ import request from "@/utils/request";
// 实验室专利列表
export const labPatentList = (params) => {
return request({
url: `/app/laboratory/patent/list`,
url: `/app/laboratory/patentList`,
method: "GET",
params
});
@ -34,7 +34,7 @@ export const updateLabPatent = (data) => {
export const deleteLabPatentByIds = (ids) => {
return request({
url: `/app/laboratory/patent/${ids}`,
url: `/app/laboratory/deletePatents/${ids}`,
method: "DELETE",
});
};