From c2a3be08bb04a5a0f05672d8cdf8f264a4fa6679 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期四, 13 二月 2025 22:09:17 +0800 Subject: [PATCH] 首页待办任务跳转、流程图查看bug --- src/api/projectPlan/index.js | 15 ++++++++++++--- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/src/api/projectPlan/index.js b/src/api/projectPlan/index.js index 6594ee2..9391710 100644 --- a/src/api/projectPlan/index.js +++ b/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 }) -- Gitblit v1.8.0