This commit is contained in:
2023-06-15 20:13:46 +08:00
parent 09382319df
commit 95bf839308
83 changed files with 20351 additions and 185 deletions

View File

@@ -0,0 +1,15 @@
import { request } from "@/api/request"
export default {
/**
* 根据项目id、round、designDemand、testDemand、case信息请求问题单列表
* @returns 属于case的问题单列表
*/
getProblemList(params = {}) {
return request({
url: `project/getProblemList`,
method: "get",
params
})
}
}