commission.js 487 B

12345678910111213141516171819202122232425
  1. import request from "@/utils/request";
  2. //登录短信
  3. export function getCashList(query) {
  4. return request({
  5. url: "/distribution/seller/cash/list",
  6. method: "get",
  7. params: query
  8. });
  9. }
  10. export function cancelApply(data) {
  11. return request({
  12. url: "/distribution/withdrawal/cancelApply",
  13. method: "post",
  14. data,
  15. });
  16. }
  17. export function getWxCodeUrl(query) {
  18. return request({
  19. url: "/distribution/poster/wxCodeUrl",
  20. method: "get",
  21. params: query
  22. });
  23. }