小程序訂單支付處理

小程序訂單支付處理


[基礎(chǔ)用法]

功能:用于小程序的訂單支付處理

用法:

第一步:在config.js文件中找到config設(shè)置

第二步:搜索一下shop_order_pay_deal_with這個(gè)接口是否已經(jīng)存在定義(有的小程序模板已經(jīng)定義),如果沒(méi)有定義的話(huà),在里面的底部新增以下代碼

            shopOrderPayDealWithUrl: getApiUrl('shop_order_pay_deal_with')

        并復(fù)制紅色部分待用,如果已經(jīng)存在,則直接復(fù)制使用即可

第三步:接口調(diào)用請(qǐng)求,如果定義名稱(chēng)不同,使用第二步復(fù)制的內(nèi)容替換紅框內(nèi)選中的部分

訂單支付處理.png

提供參考的實(shí)例代碼:

    /**
     * 訂單支付后續(xù)處理
     * 接收參數(shù)
     * 無(wú)需接收參數(shù),從頁(yè)面數(shù)據(jù)中取值
     * 接口傳參
     * order_id:訂單ID
     * order_code:訂單編號(hào)
     */
    _orderPayDealWith: function () {
        let _this = this;
        let order_id = _this.data.order_id;
        let order_code = _this.data.order_code;
        if (order_id && order_code{
            let postData = {
                order_id: order_id,
                order_code: order_code
            };
            App._requestPost(_this, App.globalData.config.shopOrderPayDealWithUrl, postData,
                function (res) {
                    App.showSuccess(res.msg, function () {
                        wx.redirectTo({ url: res.url });
                    });
                },
                function (res) {
                    App.showError(res.msg);
                }
            );
        }
    },


文檔最后更新時(shí)間:2023-03-03 11:49:01

文檔
目錄

深色
模式

切換
寬度