From 02cb7ae4d616e943e2b8660044c535db51ef4203 Mon Sep 17 00:00:00 2001
From: fuliqi <fuliqi@qq.com>
Date: 星期三, 27 十一月 2024 16:32:07 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 src/api/projectPlan/index.js |   43 ++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 40 insertions(+), 3 deletions(-)

diff --git a/src/api/projectPlan/index.js b/src/api/projectPlan/index.js
index 05105a6..d3e00b2 100644
--- a/src/api/projectPlan/index.js
+++ b/src/api/projectPlan/index.js
@@ -44,9 +44,9 @@
 }
 
 // 鍒犻櫎椤圭洰璁″垝璁板綍
-export function delRecord(id) {
+export function deletePlanRecord(id) {
   return request({
-    url: '/plan/record/' + id,
+    url: '/api/project-plan-record/' + id,
     method: 'delete'
   })
 }
@@ -75,4 +75,41 @@
     method: 'post',
     data: data
   })
-  }
+}
+
+// 寤舵湡
+export function delayPlanInfo(data) {
+  return request({
+    url: '/api/project-plan-info/delayPlanInfo',
+    method: 'post',
+    data: data
+  })
+}
+
+// 鑾峰緱涓婄骇鎵瑰
+export function getDepartmentApproval(id) {
+  return request({
+    url: '/api/project-plan-examine-record/departmentApproval/' + id,
+    method: 'get'
+  })
+}
+
+// 鍥炲涓婄骇鎵瑰
+export function replyDepartmentApproval(data) {
+  return request({
+    url: '/api/project-plan-examine-record/replyDepartmentApproval',
+    method: 'post',
+    data: data
+  })
+}
+
+// 璁″垝鏃ュ織
+export function getPlanLog(id) {
+  return request({
+    url: '/api/project-plan-examine-record/planLog/' + id,
+    method: 'get'
+  })
+}
+
+
+

--
Gitblit v1.8.0