| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { myRequest } from "./request.js";
- //修改信息
- export function sellerEdit(data) {
- return myRequest({
- url: "/distribution/seller/edit",
- method: "post",
- data: data,
- });
- }
- export function getInfoByShareCode(data) {
- return myRequest({
- url: "/app/common/distribution/getInfoByShareCode",
- method: "get",
- data: data,
- noToken: true,
- });
- }
- export function getWxConfig(data) {
- return myRequest({
- url: "/app/common/wx/config",
- method: "get",
- data: data,
- noToken: true,
- });
- }
- // 查询用户是否绑定公众号
- export function checkBindGzh(data) {
- return myRequest({
- url: "/distribution/seller/checkBindGzh",
- method: "get",
- data,
- });
- }
- // 提现
- export function withdrawal(data) {
- return myRequest({
- url: "/distribution/withdrawal",
- method: "post",
- data: data,
- });
- }
- export function OfficialLogin(data) {
- return myRequest({
- url: "/distribution/seller/gzh_bind",
- method: "post",
- data: data,
- });
- }
- // 提现记录
- export function getWithdrawalList(data) {
- return myRequest({
- url: "/distribution/withdrawal/list",
- method: "get",
- data: data,
- });
- }
- export function getMobileConfig(data) {
- return myRequest({
- url: "/app/common/mobileConfig",
- method: "get",
- data: data,
- noToken: true,
- });
- }
|