user.js 376 B

1234567891011121314151617
  1. import { myRequest } from "./request.js";
  2. //修改信息
  3. export function sellerEdit(data) {
  4. return myRequest({
  5. url: "/distribution/seller/edit",
  6. method: "post",
  7. data: data,
  8. });
  9. }
  10. export function getInfoByShareCode(data) {
  11. return myRequest({
  12. url: "/app/common/distribution/getInfoByShareCode",
  13. method: "get",
  14. data: data,
  15. noToken: true,
  16. });
  17. }