小程序商品下單展示
小程序商品下單展示
[基礎(chǔ)用法]
功能:用于獲取小程序的商品下單展示
用法:
第一步:在config.js文件中找到config設(shè)置
第二步:搜索一下shop_product_buy這個(gè)接口是否已經(jīng)存在定義(有的小程序模板已經(jīng)定義),如果沒有定義的話,在里面的底部新增以下代碼
shopProductBuyUrl: getApiUrl('shop_product_buy')
并復(fù)制紅色部分待用,如果已經(jīng)存在,則直接復(fù)制使用即可
第三步:接口調(diào)用請(qǐng)求,如果定義名稱不同,使用第二步復(fù)制的內(nèi)容替換紅框內(nèi)選中的部分
提供參考的實(shí)例代碼:
/**
* 獲取當(dāng)前訂單信息
* 接收參數(shù)
* 無需接收參數(shù),從頁(yè)面數(shù)據(jù)中取值
* 接口傳參
* querystr:訂單數(shù)據(jù)密鑰字符串
*/
getOrderData() {
let _this = this;
if (_this.data.is_buy_pay && _this.data.options.querystr) {
return false;
} else if (_this.data.is_cart_pay && !_this.data.options.querystr) {
return false;
} else {
App._requestPost(_this, App.globalData.config.shopProductBuyUrl, {querystr: _this.data.options.querystr},
function (res) {
// 優(yōu)惠券價(jià)格變?yōu)檎麛?shù)
let coupon_list = res.data.coupon_data;
if (coupon_list) {
coupon_list.forEach((value, index) => {
value["coupon_price"] = parseInt(value["coupon_price"])
});
}
let unuse_coupon_list = res.data.unuse_coupon_data;
if (unuse_coupon_list) {
unuse_coupon_list.forEach((value, index) => {
value["coupon_price"] = parseInt(value["coupon_price"])
});
}
// 商品規(guī)格處理
let prom_type = _this.data.prom_type;
let product_data = res.data.product_data;
if (product_data) {
product_data.forEach(item => {
let product_spec = item.product_spec.split(';')
_this.setData({product_spec: product_spec});
if (1 == prom_type && 0 == item.prom_type) prom_type = 0;
});
}
// 加載數(shù)據(jù)到頁(yè)面
let userInfo = res.data.users;
let address = res.data.address;
let global_info = res.data.global_info;
let exist_address = address.addr_id ? true : false;
_this.setData({product_data, global_info, address, exist_address, coupon_list, unuse_coupon_list, prom_type, userInfo});
},
function (res) {
App.showError(res.msg);
}
);
}
},
文檔最后更新時(shí)間:2023-03-01 10:48:58
未解決你的問題?請(qǐng)到「問答社區(qū)」反饋你遇到的問題