Compare commits

...

3 Commits

Author SHA1 Message Date
tuxiu21
70054d4230 继续解决冲突 2024-03-13 23:16:59 +08:00
tuxiu21
ee58d2ad3c Merge branch 'master' of https://git-fy.cn/WxxyDeveloper/JSL_OrganizeInternalOAWeb 2024-03-13 23:16:14 +08:00
tuxiu21
db2648e6fe 继续解决冲突 2024-03-13 23:13:35 +08:00

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) => {
@ -562,20 +580,20 @@ 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()
}
})
}
// /**
// * 得到tag列表
// * @param token
// */
// const getTagsProjectList = (token) =>{
// return axios({
// url:api+ "/tags/project/list",
// method: "get",
// headers:{
// 'Authorization':'Bearer '+token,
// 'Timestamp': getCurrentTimestamp()
// }
// })
// }
export default {
@ -614,6 +632,8 @@ export default {
projectGet,
projectGetCustom,
getTagsProjectList,
projectWorkGet,