From e950c38ba82e5e6bc8b0c50c35e5dbb6a180165a Mon Sep 17 00:00:00 2001
From: 13404089107 <puwei@sinata.cn>
Date: 星期二, 20 五月 2025 16:43:06 +0800
Subject: [PATCH] Merge branch 'main' of http://120.76.84.145:10101/gitblit/r/H5/leshan-laboratory

---
 laboratory/src/views/reportLibrary/processDevelopment/service.js |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 43 insertions(+), 0 deletions(-)

diff --git a/laboratory/src/views/reportLibrary/processDevelopment/service.js b/laboratory/src/views/reportLibrary/processDevelopment/service.js
new file mode 100644
index 0000000..1ec73ac
--- /dev/null
+++ b/laboratory/src/views/reportLibrary/processDevelopment/service.js
@@ -0,0 +1,43 @@
+import axios from '@/utils/request';
+
+// 查询列表
+export function getDataList(data) {
+  return axios.post('/api/t-feasibility-study-report/pageList', { ...data })
+}
+
+// 添加
+export function addData(data) {
+  return axios.post('/api/t-feasibility-study-report/add', { ...data })
+}
+
+//修改
+export function editData(data) {
+  return axios.post('/api/t-feasibility-study-report/update', { ...data })
+}
+
+//获取详情
+export function getDetail(id) {
+  return axios.get(`/open/t-feasibility-study-report/getDetailById?id=${id}`)
+}
+
+//审核
+export function audit(data) {
+  console.log(data)
+  return axios.post('/api/t-feasibility-study-report/auditReport', { ...data })
+}
+
+//撤销审批
+export function revokeAudit(data) {
+  return axios.put(`/open/t-feasibility-study-report/revokedReport?id=${data.id}`)
+}
+
+//删除
+export function deleteData(data) {
+  return axios.delete(`/open/t-feasibility-study-report/deleteById?id=${data.id}`)
+}
+
+
+
+
+
+

--
Gitblit v1.7.1