You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
392 B
13 lines
392 B
import request from './request' |
|
|
|
export function getTaskSelfexamination(taskId) { |
|
return request.get({ url: '/task/selfexamination/' + taskId }) |
|
} |
|
|
|
export function signTaskSelfexamination(taskId) { |
|
return request.post({ url: `/task/selfexamination/${taskId}/sign` }) |
|
} |
|
|
|
export function listTaskSelfexamination(query) { |
|
return request.get({ url: `/task/selfexamination`, query }) |
|
} |