This commit is contained in:
2023-06-20 18:09:30 +08:00
parent fc5d2c44ea
commit 1063053510
4 changed files with 350 additions and 44 deletions

View File

@@ -0,0 +1,14 @@
import { request } from "@/api/request"
export default {
/**
* 根据项目名、第{roundNumber}查询该轮次信息
* @returns 返回一个轮次的信息
*/
getOneRoundInfo(params = {}) {
return request({
url: "/project/getOneRoundInfo",
method: "get",
params
})
}
}