1234567891011121314151617181920212223 |
- import ajax from '@/utils/request.js';
- export function getJoinType(data) {
- return ajax({
- url: 'biz/signup/joinType',
- method: 'GET',
- urlType: 'Url2025',
- next: true,
- errorToast: '当前访问人数过多,请重试。',
- data
- });
- }
- export function saveData(data) {
- return ajax({
- url: 'biz/signup/add',
- method: 'POST',
- urlType: 'Url2025',
- next: true,
- errorToast: '当前访问人数过多,请重试。',
- data
- });
- }
|