2025.js 527 B

1234567891011121314151617181920212223
  1. import ajax from '@/utils/request.js';
  2. export function getJoinType(data) {
  3. return ajax({
  4. url: 'biz/signup/joinType',
  5. method: 'GET',
  6. urlType: 'Url2025',
  7. next: true,
  8. errorToast: '当前访问人数过多,请重试。',
  9. data
  10. });
  11. }
  12. export function saveData(data) {
  13. return ajax({
  14. url: 'biz/signup/add',
  15. method: 'POST',
  16. urlType: 'Url2025',
  17. next: true,
  18. errorToast: '当前访问人数过多,请重试。',
  19. data
  20. });
  21. }