风险测评小程序前端代码仓库
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.
 
 
 

44 lines
793 B

// 测评相关接口
const api = {
// 测评-查询答题列表
queryCategoryList: {
url: '/exam/queryCategoryList',
method: 'GET',
},
// 测评-查询答题列表
queryQuestionList: {
url: '/exam/queryQuestionList',
method: 'GET',
},
// 测评-提交答案
updateAnswer: {
url: '/exam/updateAnswer',
method: 'GET',
},
// 测评-继续答题
queryExamById: {
url: '/exam/queryExamById',
method: 'GET',
},
// 支付-创建订单
createOrder: {
url: '/exam/createOrder',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 支付-查询兑换码
queryCodeById: {
url: '/exam/queryCodeById',
method: 'GET',
},
// 我的-我的答题
queryExamLogList: {
url: '/exam/queryExamLogList',
method: 'GET',
},
}
export default api