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

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