修复bug

This commit is contained in:
yannqing 2024-03-13 23:12:56 +08:00
parent 43a9ebd81f
commit 324cf6f636

View File

@ -562,6 +562,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 { export default {
@ -602,6 +617,8 @@ export default {
projectWorkGet, projectWorkGet,
messageGet messageGet,
getTagsProjectList
} }