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.

18 lines
329 B

7 months ago
  1. import request from '@/sheep/request';
  2. export default {
  3. // 苹果相关
  4. apple: {
  5. // 第三方登录
  6. login: (data) =>
  7. request({
  8. url: 'third/apple/login',
  9. method: 'POST',
  10. data,
  11. custom: {
  12. showSuccess: true,
  13. loadingMsg: '登陆中',
  14. },
  15. }),
  16. },
  17. };