Compare commits

..

No commits in common. "c8714973ef592ab712d944532c72e3f90d72d3cd" and "025c80a1f4c34cad4650a986d720b415503567b0" have entirely different histories.

View File

@ -633,26 +633,6 @@ const projectWorkGet = (data,token) =>{
})
}
/**
* 根据项目id获取子系统的所有信息
* @param projectId
* @param token
*/
const moduleGetByProjectId = (projectId, token) => {
return axios({
url: api + "/module/get",
method: "get",
params: {
projectId: projectId
},
headers: {
'Authorization':'Bearer '+token,
'Content-Type': 'application/json;charset=utf-8',
'Timestamp': getCurrentTimestamp()
}
})
}
export default {
@ -695,8 +675,6 @@ export default {
getTagsProjectList,
projectWorkGet,
moduleGetByProjectId,
messageGet,