Compare commits

..

No commits in common. "70054d4230b9dd4e1a54d0c5476a1f00952a3efd" and "324cf6f63684e11de0c65ad2a3e4a0f35a135789" have entirely different histories.

View File

@ -547,24 +547,6 @@ 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) => {
@ -580,20 +562,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 {
@ -632,8 +614,6 @@ export default {
projectGet, projectGet,
projectGetCustom, projectGetCustom,
getTagsProjectList,
projectWorkGet, projectWorkGet,