|
require("$UI/system/lib/cordova/cordova");
require("cordova!cordova-plugin-device");
require("cordova!com.justep.cordova.plugin.alipay");
Model.prototype.payOrderByAlipay = function(orderID,productName,detail,price) {
if (!navigator.alipay) {
justep.Util.hint("当前环境不支持支付宝支付");
return;
}
var tradeNo = orderID;
var alipay = navigator.alipay;
alipay.pay({
"seller" : "huangyx@justep.com", // 卖家支付宝账号或对应的支付宝唯一用户号
"subject" : productName, // 商品名称
"body" : detail, // 商品详情
"price" : price, // 金额,单位为RMB
"tradeNo" : tradeNo, // 唯一订单号
"timeout" : "30m", // 超时设置
"notifyUrl" : this.notifyUrl
// 服务器通知路径
}, function(message) {
var responseCode = parseInt(message);
if (responseCode === 9000) {
justep.Util.hint("支付成功");
} else {
justep.Util.hint("支付失败");
}
}, function(msg) {
justep.Util.hint("支付失败");
});
};
用的文档的默认的商户账号,请问哪里出了问题? |
|