From d30d3d2d352abfcd9e16cece8a34f2a517f8abc0 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期三, 05 三月 2025 16:05:19 +0800 Subject: [PATCH] 动态表单必填提示修改 --- src/api/projectPlan/index.js | 17 ++++++++++++++--- 1 files changed, 14 insertions(+), 3 deletions(-) diff --git a/src/api/projectPlan/index.js b/src/api/projectPlan/index.js index 6594ee2..89f0f8e 100644 --- a/src/api/projectPlan/index.js +++ b/src/api/projectPlan/index.js @@ -9,6 +9,8 @@ }) } + + // 鑾峰彇涓荤鏍囪瘑 export function getManagerFlag(recordId) { return request({ @@ -59,10 +61,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 }) -- Gitblit v1.8.0