commission.js 329 B

12345678910111213141516
  1. import { myRequest } from "./request.js";
  2. //登录短信
  3. export function getCashList(data) {
  4. return myRequest({
  5. url: "/distribution/seller/cash/list",
  6. method: "get",
  7. data,
  8. });
  9. }
  10. export function getComDetail(id) {
  11. return myRequest({
  12. url: "/distribution/seller/cash/detail/" + id,
  13. method: "get",
  14. });
  15. }