index.js 547 B

123456789101112131415161718192021
  1. import https from "@/plugins/luch-request_0.0.7/request";
  2. /**
  3. * 邀请供货商(零售、供货商相同)
  4. * @param {*} name
  5. */
  6. export const applyInviteGhsPoster = name => {
  7. return https.get("/apply/invite-ghs-poster", { name });
  8. };
  9. /**
  10. * 邀请花店(零售、供货商相同) wangning 2021-6-13
  11. * @param {*} name
  12. */
  13. export const applyInviteHdPoster = name => {
  14. return https.get("/apply/invite-hd-poster", { name });
  15. };
  16. //获取验证码
  17. export const getAuthCode = data => {
  18. return https.get("/apply/get-auth-code", data);
  19. };