This commit is contained in:
2023-06-19 17:25:50 +08:00
parent ef579def81
commit eb19778bd0
41 changed files with 2788 additions and 186 deletions

View File

@ -79,3 +79,12 @@ export const deleteTechnologyDemand = (ids) => {
method: "DELETE",
});
};
//添加查看记录
export const addViewRecord = (data) => {
return request({
url: `/app/addSeeLog`,
method: "POST",
data,
});
};