子系统新增

This commit is contained in:
妖姐 2024-03-16 17:26:14 +08:00
parent 4dc94cede5
commit 61fd50f2c6

View File

@ -653,6 +653,18 @@ const projectGetById = (id, token) => {
}
const projectWorkAdd = (data, token) => {
return axios({
url: api + "/project/work/add" ,
method: "post",
data:data,
headers: {
'Authorization': 'Bearer ' + token,
'Content-Type': 'application/json;charset=utf-8',
'Timestamp': getCurrentTimestamp()
}
})
}
/**
* 根据项目id获取子系统的所有信息
@ -725,7 +737,7 @@ export default {
projectGetCustom,
projectAdd,
projectGetById,
projectWorkAdd,
getTagsProjectList,
projectWorkGet,