From 7e752b17b9b225951fe2ec608958f7b1f948a674 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期三, 15 一月 2025 17:58:47 +0800 Subject: [PATCH] 表达式管理页面小调整 --- src/api/projectEngineering/projectInfo.js | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/api/projectEngineering/projectInfo.js b/src/api/projectEngineering/projectInfo.js index 8829fc2..c78ede9 100644 --- a/src/api/projectEngineering/projectInfo.js +++ b/src/api/projectEngineering/projectInfo.js @@ -17,10 +17,25 @@ }) } +// 鏌ヨ鐩稿叧鏂囦欢 +export function getDocumentInfoById(id) { + return request({ + url: '/project/info/document/' + id, + method: 'get' + }) +} // 鏂板椤圭洰绠$悊鍩虹淇℃伅 export function addProject(data) { return request({ url: '/project/info', + method: 'post', + data: data + }) +} +// 鏂板鐩稿叧鏂囦欢 +export function addDocumentInfo(data) { + return request({ + url: '/project/info/document', method: 'post', data: data }) @@ -50,3 +65,11 @@ }) } +// 缂栬緫鏂板椤圭洰 +export function editProject(data) { + return request({ + url: '/project/info/editProject', + method: 'post', + data: data + }) +} -- Gitblit v1.8.0