xiangpei
2025-02-19 eac6b7989a6cbb9d09b20a1c46f51bb68d9f5ae7
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
  })