362 lines
7.8 KiB
JavaScript
Raw Normal View History

2025-10-16 21:07:43 +08:00
import sheep from '@/sheep';
// #ifdef H5
import $wxsdk from '@/sheep/libs/sdk-h5-weixin';
// #endif
import {
getRootUrl
} from '@/sheep/helper';
2025-10-17 17:34:36 +08:00
import CcbLifePlatform from './provider/ccblife/index';
import ccbApi from './provider/ccblife/api';
2025-10-16 21:07:43 +08:00
/**
* 支付
*
* @param {String} payment = ['wechat','alipay','wallet','offline'] - 支付方式
* @param {String} orderType = ['goods','recharge','groupon'] - 订单类型
* @param {String} orderSN - 订单号
*/
export default class SheepPay {
constructor(payment, orderType, orderSN) {
this.payment = payment;
this.orderSN = orderSN;
this.orderType = orderType;
this.payAction();
}
payAction() {
const payAction = {
WechatOfficialAccount: {
wechat: () => {
this.wechatOfficialAccountPay();
},
alipay: () => {
this.redirectPay(); // 现在公众号可以直接跳转支付宝页面
},
2025-10-17 17:34:36 +08:00
ccb: () => {
this.ccbPay(); // 建行支付
},
2025-10-16 21:07:43 +08:00
money: () => {
this.moneyPay();
},
offline: () => {
this.offlinePay();
}
},
WechatMiniProgram: {
wechat: () => {
this.wechatMiniProgramPay();
},
alipay: () => {
this.copyPayLink();
},
2025-10-17 17:34:36 +08:00
ccb: () => {
sheep.$helper.toast('小程序暂不支持建行支付');
},
2025-10-16 21:07:43 +08:00
money: () => {
this.moneyPay();
},
offline: () => {
this.offlinePay();
}
},
App: {
wechat: () => {
this.wechatAppPay();
},
alipay: () => {
this.alipay();
},
2025-10-17 17:34:36 +08:00
ccb: () => {
this.ccbPay(); // 建行支付
},
2025-10-16 21:07:43 +08:00
money: () => {
this.moneyPay();
},
offline: () => {
this.offlinePay();
}
},
H5: {
wechat: () => {
2025-10-17 17:34:36 +08:00
// 如果在建行App内使用建行支付
if (CcbLifePlatform.isInCcbApp) {
this.ccbPay();
} else {
this.wechatWapPay();
}
2025-10-16 21:07:43 +08:00
},
alipay: () => {
this.redirectPay();
},
2025-10-17 17:34:36 +08:00
ccb: () => {
this.ccbPay(); // 建行支付
},
2025-10-16 21:07:43 +08:00
money: () => {
this.moneyPay();
},
offline: () => {
this.offlinePay();
}
},
};
return payAction[sheep.$platform.name][this.payment]();
}
// 预支付
prepay() {
return new Promise((resolve, reject) => {
let data = {
order_sn: this.orderSN,
payment: this.payment,
};
if (uni.getStorageSync('openid')) {
data.openid = uni.getStorageSync('openid');
}
sheep.$api.pay.prepay(data).then((res) => {
res.code === 1 && resolve(res);
if (res.data === -1 && res.msg === 'miss_openid') {
uni.showModal({
title: '微信支付',
content: '请先绑定微信再使用微信支付',
success: function (res) {
if (res.confirm) {
sheep.$platform.useProvider('wechat').bind();
}
},
});
}
});
});
}
// #ifdef H5
// 微信公众号JSSDK支付
async wechatOfficialAccountPay() {
let that = this;
let {
code,
data,
msg
} = await this.prepay();
if (code !== 1) {
console.log('支付错误', msg);
return;
}
$wxsdk.wxpay(data.pay_data, {
success: () => {
that.payResult('success');
},
cancel: () => {
sheep.$helper.toast('支付已手动取消');
},
fail: () => {
that.payResult('fail');
},
});
}
//浏览器微信H5支付
async wechatWapPay() {
const {
code,
data
} = await this.prepay();
if (code === 1) {
const redirect_url = `${getRootUrl()}pages/pay/result?orderSN=${this.orderSN}&payment=${this.payment
}&orderType=${this.orderType}`;
location.href = `${data.pay_data.h5_url}&redirect_url=${encodeURIComponent(redirect_url)}`;
}
}
// 支付链接
async redirectPay() {
let {
code,
data
} = await this.prepay();
if (code === 1) {
const redirect_url = `${getRootUrl()}pages/pay/result?orderSN=${this.orderSN}&payment=${this.payment
}&orderType=${this.orderType}`;
location.href = data.pay_data + encodeURIComponent(redirect_url);
}
}
// #endif
// 微信小程序支付
async wechatMiniProgramPay() {
let that = this;
let result = await this.prepay();
uni.requestPayment({
provider: 'wxpay',
...result.data.pay_data,
success: (res) => {
that.payResult('success');
},
fail: (err) => {
if (err.errMsg === 'requestPayment:fail cancel') {
sheep.$helper.toast('支付已手动取消');
} else {
that.payResult('fail');
}
},
});
}
// 余额支付
async moneyPay() {
const {
code
} = await this.prepay();
code === 1 && this.payResult('success');
}
// 货到付款
async offlinePay() {
const {
code
} = await this.prepay();
code === 1 && this.payResult('success');
}
// 支付宝复制链接支付
async copyPayLink() {
let that = this;
let {
code,
data
} = await this.prepay();
if (code === 1) {
// 引入showModal 点击确认 复制链接;
uni.showModal({
title: '支付宝支付',
content: '复制链接到外部浏览器',
confirmText: '复制链接',
success: (res) => {
if (res.confirm) {
sheep.$helper.copyText(data.pay_data);
}
},
});
}
}
// 支付宝支付
async alipay() {
let that = this;
const {
code,
data
} = await this.prepay();
if (code === 1) {
uni.requestPayment({
provider: 'alipay',
orderInfo: data.pay_data, //支付宝订单数据
success: (res) => {
that.payResult('success');
},
fail: (err) => {
if (err.errMsg === 'requestPayment:fail [paymentAlipay:62001]user cancel') {
sheep.$helper.toast('支付已手动取消');
} else {
that.payResult('fail');
}
},
});
}
}
// 微信支付
async wechatAppPay() {
let that = this;
let {
code,
data
} = await this.prepay();
if (code === 1) {
uni.requestPayment({
provider: 'wxpay',
orderInfo: data.pay_data, //微信订单数据(官方说是string。实测为object)
success: (res) => {
that.payResult('success');
},
fail: (err) => {
err.errMsg !== 'requestPayment:fail cancel' && that.payResult('fail');
},
});
}
}
2025-10-17 17:34:36 +08:00
// 建行生活支付
async ccbPay() {
let that = this;
// 检查是否在建行App内
if (!CcbLifePlatform.isInCcbApp) {
sheep.$helper.toast('请在建行生活App内使用建行支付');
return;
}
// 获取订单ID从订单号查询
const orderInfo = await sheep.$api.order.detail(this.orderSN);
if (!orderInfo || orderInfo.code !== 1) {
sheep.$helper.toast('获取订单信息失败');
return;
}
// 调用后端生成支付串
const paymentResult = await ccbApi.createPayment(orderInfo.data.id);
if (paymentResult.code !== 1) {
sheep.$helper.toast(paymentResult.msg || '生成支付串失败');
return;
}
// 调起建行支付
try {
const result = await CcbLifePlatform.payment({
payment_string: paymentResult.data.payment_string,
order_id: orderInfo.data.id,
order_sn: this.orderSN
});
if (result.code === 0) {
// 支付成功,通知后端
const callbackResult = await ccbApi.paymentCallback({
order_id: orderInfo.data.id,
trans_id: result.data?.trans_id || '',
pay_time: new Date().getTime()
});
if (callbackResult.code === 1) {
that.payResult('success');
} else {
sheep.$helper.toast('支付确认失败,请联系客服');
that.payResult('fail');
}
} else {
// 支付失败或取消
if (result.msg && result.msg.includes('取消')) {
sheep.$helper.toast('支付已取消');
} else {
sheep.$helper.toast(result.msg || '支付失败');
that.payResult('fail');
}
}
} catch (error) {
console.error('[建行支付] 错误:', error);
sheep.$helper.toast('支付失败');
that.payResult('fail');
}
}
2025-10-16 21:07:43 +08:00
// 支付结果跳转,success:成功fail:失败
payResult(resultType) {
sheep.$router.redirect('/pages/pay/result', {
orderSN: this.orderSN,
payment: this.payment, //重新支付的时候使用
payState: resultType,
orderType: this.orderType,
});
}
}