12345678910111213141516171819202122232425262728293031 |
- import utils from "../js/utils.js";
- module.exports = {
-
- getCorrectionTypes(handler, data = {}) {
- return utils.http(handler, 'correction/types', data)
- },
-
- submitCorrection(handler, data = {}) {
- return utils.http(handler, 'correction/submit', data)
- },
-
- getCorrectionList(handler, data = {}) {
- return utils.http(handler, 'correction/list', data)
- },
- }
|