feat:抖音支付

This commit is contained in:
2026-09-09 11:46:36 +08:00
parent 75060faa39
commit b350f1c07a
18 changed files with 2670 additions and 531 deletions
@@ -218,6 +218,8 @@
<image v-if="item.type == 'alipay'" src="https://static.tbmall.xin/static/new/zfb.png"></image>
<image v-if="item.type == 'balance'" src="https://static.tbmall.xin/static/new/bank.png"></image>
<image v-if="item.type == 'redpacket'" src="https://static.tbmall.xin/static/new/jf.png"></image>
<image v-if="item.type == 'douyin'" src="https://static.tbmall.xin/static/new/jf.png"></image>
<text v-if="item.type == 'wechat' || item.type == 'alipay'" class="text-32 text-zu"
style="margin-left: 20rpx">{{ item.name }}</text>
<text v-else style="margin-left: 20rpx" class="text-32 text-zu">{{ item.name }}
@@ -338,6 +340,7 @@ import { getUserInfo } from "@/api/auth.js";
import {
appWxpayFun,
zfbPayFun,
douyinPayFun,
jumpWayOk,
jumpWayError,
} from "@/utils/payUtils.js";
@@ -597,9 +600,9 @@ export default {
}
// #endif
// #ifndef MP-WEIXIN
parmas["types"] = "1,2,3";
parmas["types"] = "1,2,3,6";
if (this.isCoupon) {
parmas["types"] = "1,2,3,5";
parmas["types"] = "1,2,3,5,6";
parmas.isDeduction = true;
}
// #endif
@@ -1052,6 +1055,7 @@ export default {
if (this.selectedCoupon) {
params["couponUserId"] = this.getCouponUserId(this.selectedCoupon);
}
console.log("秦星星----2", params);
resp = await settle(params);
}
@@ -1073,6 +1077,10 @@ export default {
item.alipay
) {
this.zfbPay(item.alipay, item.orderId, item.orderNum);
} else if (item.douyin &&
Object.keys(item.douyin).length !== 0 &&
item.douyin) {
this.appDouying(item.douyin, item.orderId, item.orderNum);
} else {
this.$refs.uToastRef.show({
type: "error",
@@ -1086,6 +1094,19 @@ export default {
this.getOrder();
}
},
// app 抖音支付
async appDouying(douyin, orderId, orderNum) {
try {
const result = await douyinPayFun(douyin, orderId, orderNum);
console.log("抖音支付发起成功", result);
// 处理支付发起成功后的逻辑
} catch (error) {
console.error("抖音支付失败", error);
// 处理支付失败后的逻辑
}
},
// app 微信支付
async appWxpay(alipay, orderId, orderNum) {
try {