index.js 480 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * Created by JianJia.Zhou<jianjia.zhou> on 2022/8/14.
  3. */
  4. const request = uni.$u.http
  5. import order from './order'
  6. import team from './team'
  7. import withdraw from './withdraw'
  8. export function income() {
  9. return request.get(
  10. 'share/income'
  11. )
  12. }
  13. export function tips() {
  14. return request.get(
  15. 'share/tips'
  16. )
  17. }
  18. export function setting() {
  19. return request.get(
  20. 'share/setting'
  21. )
  22. }
  23. export default {
  24. order,
  25. withdraw,
  26. team,
  27. income,
  28. tips,
  29. setting
  30. }