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.

17 lines
251 B

  1. import { http } from '../utils/http'
  2. /**
  3. * 分享接口
  4. * @param data
  5. * @returns {*}
  6. */
  7. export const getUserInfo = (data) => {
  8. return http({
  9. method: 'POST',
  10. url: '/api/my/share',
  11. data:
  12. data
  13. ,
  14. })
  15. }