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.
92 lines
1.2 KiB
92 lines
1.2 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,)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|