From a3dbb8fe40e06f9abd9718f14aaa7311bddbc150 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 13 二月 2025 21:46:05 +0800
Subject: [PATCH] 除了项目中心,其它项目页面都不显示审核状态

---
 src/api/projectPlan/index.js |   64 ++++++++++++++++++++-----------
 1 files changed, 41 insertions(+), 23 deletions(-)

diff --git a/src/api/projectPlan/index.js b/src/api/projectPlan/index.js
index d3e00b2..9391710 100644
--- a/src/api/projectPlan/index.js
+++ b/src/api/projectPlan/index.js
@@ -9,6 +9,14 @@
   })
 }
 
+// 鑾峰彇涓荤鏍囪瘑
+export function getManagerFlag(recordId) {
+  return request({
+    url: '/project/info/getManagerFlag/'+ recordId,
+    method: 'get'
+  })
+}
+
 // 鏌ヨ璁″垝璁板綍鍒楄〃
 export function getPlanRecordList(id) {
   return request({
@@ -17,28 +25,11 @@
   })
 }
 
-// 鏌ヨ椤圭洰璁″垝璁板綍璇︾粏
-export function getRecord(id) {
-  return request({
-    url: '/plan/record/' + id,
-    method: 'get'
-  })
-}
-
 // 鏂板椤圭洰璁″垝璁板綍
 export function addRecord(data) {
   return request({
     url: '/api/project-plan-record',
     method: 'post',
-    data: data
-  })
-}
-
-// 淇敼椤圭洰璁″垝璁板綍
-export function updateRecord(data) {
-  return request({
-    url: '/plan/record',
-    method: 'put',
     data: data
   })
 }
@@ -68,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
   })
@@ -94,10 +94,19 @@
   })
 }
 
-// 鍥炲涓婄骇鎵瑰
-export function replyDepartmentApproval(data) {
+// 淇濆瓨瀹℃壒
+export function saveExamine(data) {
   return request({
-    url: '/api/project-plan-examine-record/replyDepartmentApproval',
+    url: '/api/project-plan-examine-record/saveExamine',
+    method: 'post',
+    data: data
+  })
+}
+
+// 鍥炲瀹℃壒
+export function replyExamine(data) {
+  return request({
+    url: '/api/project-plan-examine-record/replyExamine',
     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