luohairen
2024-11-26 dc7ed5d3cc7bcb517d36547c63486f5176cc6b2a
src/api/projectPlan/index.js
File was renamed from src/api/project/plan/index.js
@@ -9,7 +9,7 @@
  })
}
// 查询月度计划列表
// 查询计划记录列表
export function getPlanRecordList(id) {
  return request({
    url: '/api/project-plan-record/' + id,
@@ -50,3 +50,29 @@
    method: 'delete'
  })
}
// 项目计划项列表
export function getPlanInfoData(id) {
  return request({
    url: '/api/project-plan-info/' + id,
    method: 'get'
  })
}
// 新增计划项
export function addPlanInfo(data) {
  return request({
    url: '/api/project-plan-info/addPlanInfo',
    method: 'post',
    data: data
  })
}
// 保存计划项
export function savePlanInfo(data) {
  return request({
    url: '/api/project-plan-info/savePlanInfo',
    method: 'post',
    data: data
  })
  }