From 10630535108383c81105fa2cae08bcb91d654e8f Mon Sep 17 00:00:00 2001 From: ks3356143 <314298729@qq.com> Date: Tue, 20 Jun 2023 18:09:30 +0800 Subject: [PATCH] 5566 --- cdTMP/src/api/project/round.js | 14 ++ cdTMP/src/components/ma-form-modal/index.vue | 5 +- cdTMP/src/layout/project-layout.vue | 230 ++++++++++++++++++- cdTMP/src/views/project/round/index.vue | 145 +++++++++--- 4 files changed, 350 insertions(+), 44 deletions(-) create mode 100644 cdTMP/src/api/project/round.js diff --git a/cdTMP/src/api/project/round.js b/cdTMP/src/api/project/round.js new file mode 100644 index 0000000..016bbf8 --- /dev/null +++ b/cdTMP/src/api/project/round.js @@ -0,0 +1,14 @@ +import { request } from "@/api/request" +export default { + /** + * 根据项目名、第{roundNumber}查询该轮次信息 + * @returns 返回一个轮次的信息 + */ + getOneRoundInfo(params = {}) { + return request({ + url: "/project/getOneRoundInfo", + method: "get", + params + }) + } +} diff --git a/cdTMP/src/components/ma-form-modal/index.vue b/cdTMP/src/components/ma-form-modal/index.vue index 3d182ff..cafd7bd 100644 --- a/cdTMP/src/components/ma-form-modal/index.vue +++ b/cdTMP/src/components/ma-form-modal/index.vue @@ -1,5 +1,5 @@