This commit is contained in:
tuxiu21 2024-03-13 23:16:14 +08:00
commit ee58d2ad3c

View File

@ -580,6 +580,21 @@ const projectWorkGet = (data,token) => {
})
}
/**
* 得到tag列表
* @param token
*/
const getTagsProjectList = (token) =>{
return axios({
url:api+ "/tags/project/list",
method: "get",
headers:{
'Authorization':'Bearer '+token,
'Timestamp': getCurrentTimestamp()
}
})
}
export default {
@ -622,6 +637,8 @@ export default {
projectWorkGet,
messageGet
messageGet,
getTagsProjectList
}