index.ts 493 B

12345678910111213141516171819202122232425
  1. /*
  2. * @Author: LiZhiWei
  3. * @Date: 2026-01-15 17:49:31
  4. * @LastEditors: LiZhiWei
  5. * @LastEditTime: 2026-01-23 16:09:37
  6. * @Description:
  7. */
  8. import { http } from '~/utils/fetch'
  9. /**
  10. * 申请入驻
  11. * @param params { company: string, contacts: string, phone: string, remark: string }
  12. */
  13. export const applyPartner = (data: {
  14. company: string
  15. contacts: string
  16. phone: string
  17. remark: string
  18. }) => {
  19. return http.request({
  20. url: '/app/hgj/partners',
  21. method: 'POST',
  22. data,
  23. })
  24. }