问题说嘛:练习检测有误
修改文件:application/wap/view/first/topic/problem_detail.html
axios.get('/wap/topic/isUserExaminationRecord', {
params: {
e_id: this.e_id,
}
}).then(function (res) {
if (res.data.code === 400) {
layer.msg('参数错误,请重新答题', function () {
window.location.replace($h.U({
c: 'topic',
a: 'problem_index',
q: {
id: vm.test_id,
}
}));
});
}
})