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.

22 lines
380 B

  1. import { http } from '../../utils/http'
  2. export const getData = () => {
  3. return http({
  4. method: 'GET',
  5. url: '/ka',
  6. })
  7. }
  8. /**
  9. * 小程序登录_内测版
  10. * @param phoneNumber 模拟手机号码
  11. */
  12. export const postLoginWxMinSimpleAPI = (phoneNumber) => {
  13. return http({
  14. method: 'POST',
  15. url: '/login/wxMin/simple',
  16. data: {
  17. phoneNumber,
  18. },
  19. })
  20. }