小程序分销接口使用说明-j9九游

小程序分销接口使用说明


请先在config.js文件中找到config设置,查看是否已定义接口路径

1.png

如未定义,请先定义接口路径保存文件:dealeractionurl: getapi,


接口名称:app.globaldata.config.dealeractionurl


接口必要参数:action

action: 'getapply'                     获取分销商申请页面数据

action: 'addapply'                    添加分销商申请

action: 'getdealer'                    获取分销商信息

action: 'getposter'                    获取分销商推广海报

action: 'bindusers'                   绑定成为分销商下级

action: 'getcustomerlist'         获取分销商客户列表

action: 'getsubordinatelist'     获取分销商下级分销商列表

action: 'getorderlist'               获取分销商参与分佣的订单列表

action: 'getmoneylist'             获取分销商佣金明细列表

action: 'getwithdrawapply'     获取分销商提现申请页面数据

action: 'addwithdrawapply'    添加分销商提现申请

action: 'getwithdrawlist'         获取分销商提现申请列表


接口其他参数:根据action参数变化,请参考指定接口


必要方法说明:app.dealeropenhandle(res);

检测分销功能是否开启,当前登录者的分销商状态,如有异常则提示并跳转到会员中心。


基础代码示例:

    getdealerxxxxx() {
        let _this = this;
        let postdata = {
            action: 'xxxxx',
        };
        app._requestapi(_this, app.globaldata.config.dealeractionurl, postdata, function (res) {
            // 分销功能是否开启,未开启则跳转到指定页面
            app.dealeropenhandle(res);
            // 接口数据
            let xxxxx = res.data;
        });
    },
文档最后更新时间:2023-03-16 11:23:30
网站地图