
【主 题】:测试支付接口 【描 述】: [原因]: [过程]:成功从 从后端拿去到 支付签名 并且测试调用 微信支付接口成功 [影响]: 【结 束】 # 类型 包含: # feat:新功能(feature) # fix:修补bug # docs:文档(documentation) # style: 格式(不影响代码运行的变动) # refactor:重构(即不是新增功能,也不是修改bug的代码变动) # test:增加测试 # chore:构建过程或辅助工具的变动
64 lines
1.3 KiB
Vue
64 lines
1.3 KiB
Vue
<template>
|
|
<view>
|
|
<button @click="pay">确认支付</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
order_sn: '' //订单号
|
|
}
|
|
},
|
|
onLoad(options) {
|
|
this.order_sn = options.order_sn; // 从提交订单页面传递过来的订单号
|
|
},
|
|
methods: {
|
|
// 支付方法
|
|
pay() {
|
|
uni.$u.http.post('/Api/Pay/pay', {
|
|
order_sn: this.order_sn
|
|
}, {
|
|
header: {
|
|
'Token': this.$store.state.userInfo.token,
|
|
'Content-Type': 'application/x-www-form-urlencoded'
|
|
}
|
|
}).then((res) => {
|
|
if (res.data.status === 1) {
|
|
// 调用微信支付接口
|
|
this.requestPayment(res.data.payMsg);
|
|
}
|
|
})
|
|
},
|
|
// 调用微信支付接口
|
|
requestPayment(payMsg) {
|
|
uni.requestPayment({
|
|
timeStamp: payMsg.timeStamp,
|
|
nonceStr: payMsg.nonceStr,
|
|
package: payMsg.package,
|
|
signType: payMsg.signType,
|
|
paySign: payMsg.paySign,
|
|
success: (res) => {
|
|
uni.showToast({
|
|
title: '支付成功',
|
|
icon: 'success'
|
|
});
|
|
// 可以在这里处理支付成功后的逻辑
|
|
},
|
|
fail: (err) => {
|
|
uni.showToast({
|
|
title: '支付失败',
|
|
icon: 'none'
|
|
});
|
|
console.error(err);
|
|
}
|
|
});
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style> |