guozhi-wechat/common/api/question.js

15 lines
262 B
JavaScript
Raw Normal View History

2025-07-22 18:31:50 +08:00
import utils from "../js/utils.js";
/**
* 题目相关接口
*/
module.exports = {
/**
* 记录错题
* @returns {Promise<*>}
*/
addQuestionWrong(handler, data = {}) {
return utils.http(handler, 'question/wrongAdd', data)
},
}