xiangpei
2025-01-03 7e2445e59ae0f5aaa39b9b8c1fbdf32ed080f5c7
src/api/projectPlan/index.js
@@ -59,10 +59,19 @@
  })
}
// 保存计划项
export function savePlanInfo(data) {
// 用户重新上报计划项
export function resubmitPlanInfo(data) {
  return request({
    url: '/api/project-plan-info/savePlanInfo',
    url: '/api/project-plan-info/resubmitPlanInfo',
    method: 'post',
    data: data
  })
}
// 保存计划项
export function savePlanInfo(data, planRecordId) {
  return request({
    url: '/api/project-plan-info/savePlanInfo/' + planRecordId,
    method: 'post',
    data: data
  })