From e788995330a3fd588d0d80f28ee7510e4b7c787f Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期三, 12 二月 2025 15:35:07 +0800 Subject: [PATCH] 只在项目中心展示审核按钮 --- src/api/projectPlan/index.js | 24 +++++++++++++++++++++--- 1 files changed, 21 insertions(+), 3 deletions(-) diff --git a/src/api/projectPlan/index.js b/src/api/projectPlan/index.js index 43f804e..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 }) @@ -112,4 +121,13 @@ } +// 杩涘害寰呭姙鍒楄〃 +export function getProjectPlanToDoList(query) { + return request({ + url: '/api/project-plan-examine-record/todo_list', + method: 'get', + params: query + }) +} + -- Gitblit v1.8.0