From dc7ed5d3cc7bcb517d36547c63486f5176cc6b2a Mon Sep 17 00:00:00 2001
From: luohairen <3399054449@qq.com>
Date: 星期二, 26 十一月 2024 15:51:13 +0800
Subject: [PATCH] 完成计划项编辑上报

---
 src/api/projectPlan/index.js |   28 +++++++++++++++++++++++++++-
 1 files changed, 27 insertions(+), 1 deletions(-)

diff --git a/src/api/project/plan/index.js b/src/api/projectPlan/index.js
similarity index 64%
rename from src/api/project/plan/index.js
rename to src/api/projectPlan/index.js
index 0bc549b..05105a6 100644
--- a/src/api/project/plan/index.js
+++ b/src/api/projectPlan/index.js
@@ -9,7 +9,7 @@
   })
 }
 
-// 鏌ヨ鏈堝害璁″垝鍒楄〃
+// 鏌ヨ璁″垝璁板綍鍒楄〃
 export function getPlanRecordList(id) {
   return request({
     url: '/api/project-plan-record/' + id,
@@ -50,3 +50,29 @@
     method: 'delete'
   })
 }
+
+// 椤圭洰璁″垝椤瑰垪琛�
+export function getPlanInfoData(id) {
+  return request({
+    url: '/api/project-plan-info/' + id,
+    method: 'get'
+  })
+}
+
+// 鏂板璁″垝椤�
+export function addPlanInfo(data) {
+  return request({
+    url: '/api/project-plan-info/addPlanInfo',
+    method: 'post',
+    data: data
+  })
+}
+
+// 淇濆瓨璁″垝椤�
+export function savePlanInfo(data) {
+  return request({
+    url: '/api/project-plan-info/savePlanInfo',
+    method: 'post',
+    data: data
+  })
+  }

--
Gitblit v1.8.0