add projectadd

This commit is contained in:
tuxiu21 2024-03-14 20:21:04 +08:00
parent 64e16185bd
commit 1763421e4b

View File

@ -514,6 +514,23 @@ const projectGet =(token) => {
}) })
} }
/**
* 新增项目
* @param token
* @param data
*/
const projectAdd =(token,data) => {
return axios({
url:api+ "/project/add",
method: "post",
data:data,
headers:{
'Authorization':'Bearer '+token,
'Timestamp': getCurrentTimestamp()
}
})
}
/** /**
* 展示游客查看的项目 * 展示游客查看的项目
* @param data (tags isFinish id) * @param data (tags isFinish id)