獲取分銷商申請頁面數(shù)據(jù)
獲取分銷商申請頁面數(shù)據(jù)
[溫馨提示]
請先查看小程序分銷接口使用說明,了解接口作用,如已查看請忽略提示。
提供參考的實(shí)例代碼:
/**
* 獲取分銷商申請頁面數(shù)據(jù)
* 接收參數(shù)
* 無
* 接口傳參
* action: 指定操作
*/
getDealerApply() {
let _this = this;
let postData = {
action: 'getApply',
};
App._requestApi(_this, App.globalData.config.dealerActionUrl, postData, function (res) {
// 檢測分銷功能是否開啟,當(dāng)前登錄者的分銷商狀態(tài),如有異常則提示并跳轉(zhuǎn)到指定頁面
App.dealerOpenHandle(res);
// 接口數(shù)據(jù)處理
let dealer = res.data;
if ('success' == dealer.code) {
wx.navigateTo({ url: dealer.jumpPage });
} else {
_this.setData({
dealer: res.data,
isLoading: false,
});
}
});
},
文檔最后更新時間:2023-03-16 11:53:15
← 小程序分銷接口使用說明
添加分銷商申請 →
未解決你的問題?請到「問答社區(qū)」反饋你遇到的問題