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.
115 lines
2.1 KiB
115 lines
2.1 KiB
|
|
|
|
|
|
import { http } from '@/uni_modules/uview-plus'
|
|
|
|
//登录
|
|
export const loginApi = (data) => http.post('token/login', data)
|
|
// 验证码登录
|
|
export const loginSMS = (data) => http.post('member/auth/sms-login', data, { custom: { noToken: true }})
|
|
// 登录发验证码
|
|
export const getLoginCode = (data) => http.post('member/auth/send-sms-code', data, { custom: { noToken: true, catch: true,}})
|
|
// 获取个人信息
|
|
export const getUserInfo = (data) => http.post('member/user/get', {header: {'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'}})
|
|
// 退出登录
|
|
export const logOut = (data={}) => http.post('member/auth/logout', data, {custom: {catch: true, toast: false }})
|
|
// 题库类型
|
|
export const questbanktypeApi = (params={}) => http.get('idex/questbanktype/list', {params})
|
|
// 进入答题页
|
|
export const startQuestionApi = (data) => http.post('questionBank/startQuestion', data,)
|
|
// 提交答案
|
|
export const submitAnswerResultApi = (data) => http.post('questionBank/submitAnswerResult.do', data,)
|
|
// 上一题-下一题-直接跳到几题
|
|
export const getQuestionApi = (data) => http.post('questionBank/getQuestion', data,)
|
|
// 添加反馈
|
|
export const questionCommentAdd = (data) => http.post('questionComment/add', data,)
|
|
// 添加|取消 收藏 错题
|
|
export const questionWrongColle = (data) => http.post('questionWrong/dealCollection', data,)
|
|
// 通知
|
|
export const indexNoticeApi = (subject) => http.get('idex/notice-'+subject, )
|
|
// 轮播图
|
|
export const indexAdApi = (subject) => http.get('idex/ad-'+subject, )
|
|
// 获取顺序、精选练习已学题目,总题目数
|
|
export const indexAdCount = (data) => http.get(`idex/count-${data.subject}-${data.carType}`, )
|
|
// 考试流程
|
|
export const examProcessInfo = (subject) => http.get(`idex/examProcessInfo-${subject}`, )
|
|
// 分类学习了级
|
|
export const columnPid = (pid) => http.get(`idex/column-${pid}`, )
|
|
// 分类学习父级id
|
|
export const columnFid = (data) => http.get(`idex/${data.type}-column-${data.stepType}-${data.carType}`, )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|