继续解决冲突

This commit is contained in:
tuxiu21 2024-03-13 23:13:35 +08:00
parent 43a9ebd81f
commit db2648e6fe

View File

@ -530,7 +530,7 @@ const projectGetCustom = (data) =>{
}
/**
/**
* 展示全部消息
*
*/
@ -547,6 +547,24 @@ const messageGet = (token) => {
}
/**
* 得到tag列表
* @param token
*/
const getTagsProjectList
= (token) =>{
return axios({
url:api+ "/tags/project/list",
method: "get",
headers:{
'Authorization':'Bearer '+token,
'Timestamp': getCurrentTimestamp()
}
})
}
/**
* 得到tag列表
* @param token
* 获取项目的所有子系统
*/
const projectWorkGet = (data,token) => {
@ -599,6 +617,8 @@ export default {
projectGet,
projectGetCustom,
getTagsProjectList,
projectWorkGet,