代码拉取完成,页面将自动刷新
const AV = require('leanengine');
const wxpay = require('./wxpay');
const {
validateSign,
handleError,
} = require('./utils');
class Order extends AV.Object {
get tradeId() { return this.get('tradeId'); }
set tradeId(value) { this.set('tradeId', value); }
get amount() { return this.get('amount'); }
set amount(value) { this.set('amount', value); }
get user() { return this.get('user'); }
set user(value) { this.set('user', value); }
get productDescription() { return this.get('productDescription'); }
set productDescription(value) { this.set('productDescription', value); }
get status() { return this.get('status'); }
set status(value) { this.set('status', value); }
get ip() { return this.get('ip'); }
set ip(value) { this.set('ip', value); }
get tradeType() { return this.get('tradeType'); }
set tradeType(value) { this.set('tradeType', value); }
get prepayId() { return this.get('prepayId'); }
set prepayId(value) { this.set('prepayId', value); }
place() {
return new Promise((resolve, reject) => {
// 参数文档: https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=9_1
wxpay.createUnifiedOrder({
openid: this.user.get('authData').lc_weapp.openid,
body: this.productDescription,
out_trade_no: this.tradeId,
total_fee: this.amount,
spbill_create_ip: this.ip,
notify_url: process.env.WEIXIN_NOTIFY_URL,
trade_type: this.tradeType,
}, function(err, result) {
console.log(err, result);
if (err) return reject(err);
return resolve(result);
});
}).then(handleError).then(validateSign).then(({
prepay_id,
}) => {
this.prepayId = prepay_id;
// return this.save();
});
}
}
AV.Object.register(Order);
module.exports = Order;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。