From 897d9dce07aa716151b53b3204a81df63c8031e6 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期日, 02 三月 2025 10:54:45 +0800
Subject: [PATCH] 流程图用红码判断超时,且显示黄色

---
 src/api/projectEngineering/projectInfo.js |   46 +++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 45 insertions(+), 1 deletions(-)

diff --git a/src/api/projectEngineering/projectInfo.js b/src/api/projectEngineering/projectInfo.js
index 1afcc70..af8f0d7 100644
--- a/src/api/projectEngineering/projectInfo.js
+++ b/src/api/projectEngineering/projectInfo.js
@@ -1,11 +1,19 @@
 import request from '@/utils/request'
 
 // 鏌ヨ椤圭洰绠$悊鍩虹淇℃伅鍒楄〃
-export function listProject(query) {
+export  function listProject(query) {
   return request({
     url: '/project/info/page',
     method: 'get',
     params: query
+  })
+}
+
+// 鍏ㄩ儴
+export function list() {
+  return request({
+    url: '/project/info/list',
+    method: 'get'
   })
 }
 
@@ -65,3 +73,39 @@
   })
 }
 
+// 缂栬緫鏂板椤圭洰
+export function editProject(data) {
+  return request({
+    url: '/project/info/editProject',
+    method: 'post',
+    data: data
+  })
+}
+export function searchByKey(data) {
+  return request({
+    url: '/project/info/searchByKey',
+    method: 'get',
+    params: data
+  })
+}
+export function getHiddenList(data){
+  return request({
+    url:'/hidden-admin/page',
+    method:'get',
+    params: data
+  })
+}
+export function saveHiddenList(data){
+  return request({
+    url:'/hidden-admin/updateList',
+    method: 'put',
+    data: data
+  })
+}
+export function addList(data){
+    return request({
+      url:'/hidden-admin/addList',
+      method:'post',
+      data:data
+    })
+}

--
Gitblit v1.8.0