Files
cdTestPlant3/cdTMP/src/api/project/problem.js
2023-06-15 20:13:46 +08:00

16 lines
381 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { request } from "@/api/request"
export default {
/**
* 根据项目id、round、designDemand、testDemand、case信息请求问题单列表
* @returns 属于case的问题单列表
*/
getProblemList(params = {}) {
return request({
url: `project/getProblemList`,
method: "get",
params
})
}
}