From 0417817fd8c7b5b79efd721da77f70217cda0201 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期四, 28 十一月 2024 01:33:07 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/api/projectManage/progress/index.js | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 54 insertions(+), 0 deletions(-) diff --git a/src/api/projectManage/progress/index.js b/src/api/projectManage/progress/index.js new file mode 100644 index 0000000..e5c2eda --- /dev/null +++ b/src/api/projectManage/progress/index.js @@ -0,0 +1,54 @@ +import request from '@/utils/request' + +// 鏌ヨ椤圭洰璁″垝璁板綍鍒楄〃 +export function getList(query) { + return request({ + url: '/api/plan/page', + method: 'get', + params: query + }) +} + +// 鏌ヨ璁″垝璁板綍鍒楄〃 +export function getPlanRecordList(id) { + return request({ + url: '/api/project-plan-record/' + id, + method: 'post' + }) +} + +// 鏌ヨ椤圭洰璁″垝璁板綍璇︾粏 +export function getRecord(id) { + return request({ + url: '/plan/record/' + id, + method: 'get' + }) +} + +// 鑾峰彇椤圭洰杩涘害璁″垝椤� +export function getProgressInfoList(id) { + return request({ + url: '/api/progress-plan/' + id, + method: 'get' + }) +} + +// 鑾峰彇杩涘害涓婃姤鍐呭 +export function getProgressReport(id) { + return request({ + url: '/api/project-plan-progress-report/' + id, + method: 'get' + }) +} + +// 鎻愪氦涓婃姤鍐呭 +export function recordSubmit(data) { + return request({ + url: '/api/project-plan-progress-report', + method: 'post', + data: data + }) +} + + + -- Gitblit v1.8.0