|
var weixin = navigator.weixin;
weixin.generatePrepayId({ // 生成预支付id
"body" : "管家",
"feeType" : "1",
"notifyUrl" : notifyUrl,
"totalFee" : totalFee*100,//总金额(单位分)
"traceId" : traceID,
"tradeNo" : tradeNo
}, function(prepayId) {
//alert("prepayId:"+prepayId);
weixin.sendPayReq(prepayId, function(message) { // 支付
var responseCode = parseInt(message);
//alert("message:"+message);
if (responseCode === 0) {
//支付成功
successCallback(prepayId);
}
if (responseCode === -1) {
//失败。
failCallback(prepayId);
}
if (responseCode === -2) {
//取消
cancelCallback(prepayId);
}
}, function(message) {
cancelCallback(prepayId);
});
}, function(message) {
//alert("messagefail:"+message);
failCallback(message);
});
微信支付返回的prepayId是:wx110021064329592d55ea36302771960721
微信的交易订单号:4200000211201812114833130979
微信的商户单号:C84019EEA3700001EE4017F02CECB8E0
这怎么对账啊
|
|