From a5dc99a838ca1145ff2f2a46ad1c4a79a82d9eed Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期一, 08 六月 2026 11:56:21 +0800
Subject: [PATCH] 新疆大罗素 1.仓储物流查看数采要展示存放位置 2.销售台账查看详情时价格没有隐藏

---
 src/api/projectManagement/project.js |  118 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 118 insertions(+), 0 deletions(-)

diff --git a/src/api/projectManagement/project.js b/src/api/projectManagement/project.js
new file mode 100644
index 0000000..2d6eff1
--- /dev/null
+++ b/src/api/projectManagement/project.js
@@ -0,0 +1,118 @@
+import request from '@/utils/request'
+
+export function listProject(data) {
+  return request({
+    url: '/projectManagement/info/listPage',
+    method: 'post',
+    data: data
+  })
+}
+
+export function getProject(id) {
+  return request({
+    url: `/projectManagement/info/${id}`,
+    method: 'post'
+  })
+}
+
+export function addProject(data) {
+  return request({
+    url: '/projectManagement/info/save',
+    method: 'post',
+    data: data
+  })
+}
+
+export function updateProject(data) {
+  return request({
+    url: '/projectManagement/info/save',
+    method: 'post',
+    data: data
+  })
+}
+
+export function delProject(ids) {
+  return request({
+    url: '/projectManagement/info/remove',
+    method: 'delete',
+    data: ids
+  })
+}
+
+export function updateStatus(data) {
+  return request({
+    url: '/projectManagement/info/updateStatus',
+    method: 'post',
+    data: data
+  })
+}
+
+export function submitProject(data) {
+  return request({
+    url: '/projectManagement/info/updateStatus',
+    method: 'post',
+    data: { ...data, reviewStatus: 0 }
+  })
+}
+
+export function auditProject(data) {
+  return request({
+    url: '/projectManagement/info/updateStatus',
+    method: 'post',
+    data: { ...data, reviewStatus: 1 }
+  })
+}
+
+export function reverseAuditProject(data) {
+  return request({
+    url: '/projectManagement/info/updateStatus',
+    method: 'post',
+    data: { ...data, reviewStatus: 0 }
+  })
+}
+
+// 闃舵
+export function saveStage(data) {
+  return request({
+    url: '/projectManagement/info/saveStage',
+    method: 'post',
+    data: data
+  })
+}
+
+export function listStage(projectId) {
+  return request({
+    url: `/projectManagement/info/listStage/${projectId}`,
+    method: 'post'
+  })
+}
+
+export function deleteStage(stageId) {
+  return request({
+    url: `/projectManagement/info/deleteStage/${stageId}`,
+    method: 'post'
+  })
+}
+
+export function listPlan(data) {
+  return request({
+    url: '/projectManagement/plan/listPage',
+    method: 'post',
+    data: data
+  })
+}
+
+export function addPlan(data) {
+  return request({
+    url: '/projectManagement/plan/save',
+    method: 'post',
+    data: data
+  })
+}
+
+export function delPlan(id) {
+  return request({
+    url: `/projectManagement/plan/delete/${id}`,
+    method: 'post'
+  })
+}

--
Gitblit v1.9.3