添加分銷商申請
添加分銷商申請
[溫馨提示]
請先查看小程序分銷接口使用說明,了解接口作用,如已查看請忽略提示。
提供參考的實例代碼:
/**
* 添加分銷商申請
* 接收參數(shù)
* 根據(jù) 獲取分銷商申請頁面數(shù)據(jù) 接口獲取到的數(shù)據(jù) dealer
* 接口傳參
* dealer: 分銷商申請數(shù)據(jù),已包含 action 參數(shù)
*/
onFormSubmit(e) {
let _this = this;
let dealer = _this.data.dealer;
// 驗證姓名
if (!dealer.dealer_name || dealer.dealer_name.length < 1) {
App.showError('請?zhí)顚懶彰?/span>');
return false;
}
// 驗證手機(jī)號
dealer.dealer_mobile = String(dealer.dealer_mobile);
if (11 != parseInt(dealer.dealer_mobile.length) || !/^\+?\d[\d -]{9,12}\d/.test(dealer.dealer_mobile)) {
App.showError('手機(jī)號格式不正確');
return false;
}
// 禁用重復(fù)提交
_this.setData({ disabled: true });
// 提交申請
App._requestApi(_this, App.globalData.config.dealerActionUrl, dealer, function (res) {
// 檢測分銷功能是否開啟,當(dāng)前登錄者的分銷商狀態(tài),如有異常則提示并跳轉(zhuǎn)到指定頁面
App.dealerOpenHandle(res);
// 接口數(shù)據(jù)處理
if (1 === parseInt(res.code)) {
App.showSuccess(res.msg, function() {
_this.setData({ dealer: res.data });
});
}
});
},
文檔最后更新時間:2023-03-16 11:55:06
未解決你的問題?請到「問答社區(qū)」反饋你遇到的問題