12345678910111213141516171819202122232425 |
- import request from "@/utils/request";
- //登录短信
- export function getCashList(query) {
- return request({
- url: "/distribution/seller/cash/list",
- method: "get",
- params: query
- });
- }
- export function cancelApply(data) {
- return request({
- url: "/distribution/withdrawal/cancelApply",
- method: "post",
- data,
- });
- }
- export function getWxCodeUrl(query) {
- return request({
- url: "/distribution/poster/wxCodeUrl",
- method: "get",
- params: query
- });
- }
|