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.

89 lines
1.1 KiB

4 months ago
2 weeks ago
4 months ago
2 weeks ago
4 months ago
  1. import { http } from '@/uni_modules/uview-plus'
  2. //登录
  3. export const loginApi = (data) => http.post('token/login', data)
  4. // 验证码登录
  5. export const loginSMS = (data) => http.post('member/auth/sms-login', data, { custom: { noToken: true }})
  6. // 登录发验证码
  7. export const getLoginCode = (data) => http.post('member/auth/send-sms-code', data, { custom: { noToken: true, catch: true,}})
  8. // 获取个人信息
  9. export const getUserInfo = (data) => http.post('member/user/get', {header: {'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'}})
  10. // 退出登录
  11. export const logOut = (data={}) => http.post('member/auth/logout', data, {custom: {catch: true, toast: false }})
  12. // 题库类型
  13. export const questbanktypeApi = (params={}) => http.get('idex/questbanktype/list', {params})
  14. // 进入答题页
  15. export const startQuestionApi = (data) => http.post('questionBank/startQuestion', data,)
  16. // 提交答案
  17. export const submitAnswerResultApi = (data) => http.post('questionBank/submitAnswerResult.do', data,)