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 @@