| 123456789101112131415161718192021 |
- import https from "@/plugins/luch-request_0.0.7/request";
- /**
- * 邀请供货商(零售、供货商相同)
- * @param {*} name
- */
- export const applyInviteGhsPoster = name => {
- return https.get("/apply/invite-ghs-poster", { name });
- };
- /**
- * 邀请花店(零售、供货商相同) wangning 2021-6-13
- * @param {*} name
- */
- export const applyInviteHdPoster = name => {
- return https.get("/apply/invite-hd-poster", { name });
- };
- //获取验证码
- export const getAuthCode = data => {
- return https.get("/apply/get-auth-code", data);
- };
|