You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

userinvite.js 245 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
1234567891011
  1. import service from '../service';
  2. // 邀请好友页面数据
  3. export const getUserInvitationCode = (params) => { // page pageSize
  4. return service({
  5. url: '/user/invitation_code',
  6. method: 'get',
  7. params: params,
  8. data: {},
  9. });
  10. }