This commit is contained in:
2023-06-16 19:30:36 +08:00
parent 95bf839308
commit 57c772a913
7 changed files with 417 additions and 29 deletions

View File

@@ -0,0 +1,10 @@
import { request } from "@/api/request"
export default {
getSingleProblem(params = {}) {
return request({
url: "/project/getSingleProblem",
method: "get",
params
})
}
}