video_app/pages/index/mggghRAnkh/zaDDTghWrb.vue

397 lines
10 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view>
<view class="bg-white padding-sm margin flex" style="border-radius: 24rpx;">
<u-image width="200rpx" height="200rpx" border-radius="10rpx" :src="courseListIos.titleImg">
</u-image>
<view class="flex flex-direction justify-between margin-left-sm" style="width:420rpx;">
<view class="text-bold text-black margin-top-xs u-line-1 text-lg">{{courseListIos.title}}
</view>
<!-- <view class="text-gray text-26 margin-top">最近在学{{courseListIos.payNum}}</view> -->
<view class="flex justify-between ">
<view class=" text-bold " style="color: #FF8211;">¥<text
style="font-size: 42rpx;">{{courseListIos.price}}</text></view>
</view>
</view>
</view>
<view class="popup_pay_ios">
<view class="text-lg text-bold">支付方式</view>
<view class="flex align-center justify-between" style="height: 100upx;" v-for="(item,index) in openListsIos"
:key='index'>
<image :src="item.image" style="width: 55upx;height: 55upx;border-radius: 50upx;">
</image>
<view style="font-size: 30upx;margin-left: 20upx;width: 70%;">
{{item.text}}
</view>
<radio-group name="openWay" style="margin-left: 45upx;" @tap.stop='selectWayIos(item)'>
<label >
<radio color="red" :checked="openWayIos === item.id ? true : false" />
</label>
</radio-group>
</view>
<!-- <view class="pay_btn" @click="payIos()">确认支付</view> -->
</view>
<view class="taber_ios">
<view class="flex align-center" style="color: #FF8211;">
<text style="color: #333;">实付款:</text>
<view class=" text-bold " style="color: #FF8211;">¥<text
style="font-size: 42rpx;">{{courseListIos.price}}</text></view>
</view>
<view class="btn_ios" @click="payIos">确定并支付</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
courseIdIos: '',
courseListIos: [],
openListsIos: [],
openWayIos: 1,
flagIos: true
}
},
onLoad(option) {
// #ifdef APP
this.openListsIos = [{
image: '../../../static/images/index/weixin.png',
text: '微信支付',
id: 1
}, {
image: '../../../static/images/index/zhifubao.png',
text: '支付宝',
id: 2
}],
this.openWayIos = 1;
// #endif
// #ifdef MP-WEIXIN
this.openListsIos = [{
image: '../../../static/images/index/weixin.png',
text: '微信支付',
id: 1
}],
this.openWayIos = 1;
// #endif
// #ifdef H5
let ua = navigator.userAgent.toLowerCase();
if (ua.indexOf('micromessenger') !== -1) {
this.openListsIos = [{
image: '../../../static/images/index/weixin.png',
text: '微信支付',
id: 1
}, {
image: '../../../static/images/index/zhifubao.png',
text: '支付宝',
id: 2
}],
this.openWayIos = 1;
} else {
this.openListsIos = [{
image: '../../../static/images/index/zhifubao.png',
text: '支付宝',
id: 2
}],
this.openWayIos = 2;
}
// this.openListsIos = [{
// image: '../../../static/images/index/zhifubao.png',
// text: '支付宝',
// id: 2
// }],
// this.openWayIos = 2;
// #endif
if (option.courseId) {
this.courseIdIos = option.courseId
this.getDataListIos(this.courseIdIos)
}
},
methods: {
selectWayIos(e) {
this.openWayIos = e.id;
},
// 资源详情
getDataListIos(id) {
let data = {
id
}
this.$u.api.courseDet(data).then(res => {
if (res.code == 0) {
this.courseListIos = res.data
} else {
uni.showToast({
title: res.msg,
duration: 1500,
icon: 'none'
});
}
})
},
payIos() {
let that = this
if (that.flagIos) {
that.flagIos = false
let data = {
courseId: that.courseListIos.courseId
}
that.$u.api.courseOrder(data).then(res => {
if (res.code == 0 && res.data.flag == 1) {
uni.showToast({
title: '已获取资源',
icon: 'success'
})
that.getDataListIos(that.courseIdIos);
} else if (res.code == 0 && res.data.flag == 2) {
uni.showLoading({
title: '支付中...'
})
if (that.openWayIos == 1) {
// #ifdef MP-WEIXIN
that.$u.post('app/wxPay/wxPayJsApiOrder?orderId=' + res.data.orders.ordersId, {})
.then(
ret => {
uni.requestPayment({
provider: 'wxpay',
timeStamp: ret.data.timestamp,
nonceStr: ret.data.noncestr,
package: ret.data.package,
signType: ret.data.signType,
paySign: ret.data.sign,
success: function(suc) {
console.log('success:' + JSON.stringify(suc));
uni.hideLoading();
uni.showToast({
title: '支付成功',
icon: 'none'
})
setTimeout(function() {
uni.navigateTo({
url: '/me/order/index'
})
}, 1000)
},
fail: function(err) {
uni.hideLoading();
console.log('fail:' + JSON.stringify(err));
uni.showToast({
title: '支付失败',
icon: 'none'
})
}
});
});
// #endif
// #ifdef H5
let ua = navigator.userAgent.toLowerCase();
if (ua.indexOf('micromessenger') !== -1) {
that.$u.post('/app/wxPay/wxPayMpOrder?orderId=' + res.data.orders.ordersId)
.then(
res => {
if (res.code === 0) {
that.callPayIos(res.data);
} else {
uni.hideLoading();
uni.showToast({
icon: 'none',
title: '支付失败!'
});
}
});
}
// #endif
// #ifdef APP
console.log(res.data.orders.ordersId,
'res.data.orders.ordersIdres.data.orders.ordersId')
// let data = {
// orderId: res.data.orders.ordersId,
// }
that.$u.post('/app/wxPay/payAppOrder?orderId=' + res.data.orders.ordersId).then(
rea => {
console.log(rea)
if (rea.code == 0) {
that.isCheckPayIos(rea.code, 'wxpay', JSON.stringify(rea.data));
}
});
// #endif
} else if (that.openWayIos == 2) {
// #ifdef H5
that.$u.post('/app/aliPay/payOrder?orderId=' + res.data.orders.ordersId +
'&classify=2').then(
res => {
if (res.code === 0) {
uni.hideLoading();
const div = document.createElement('div')
div.innerHTML = res.data //此处form就是后台返回接收到的数据
document.body.appendChild(div)
document.forms[0].submit()
} else {
uni.hideLoading();
uni.showToast({
icon: 'none',
title: '支付失败!'
});
}
});
// #endif
// #ifdef APP
console.log('---------', res.data.orders.ordersId)
// let data = {
// orderId: res.data.orders.ordersId,
// classify:1
// }
that.$u.post('/app/aliPay/payOrder?orderId=' + res.data.orders.ordersId +
'&classify=1').then(
rea => {
console.log('---------', rea)
that.setPaymentIos('alipay', rea.data);
});
// #endif
}
} else {
uni.showToast({
title: res.msg,
icon: 'none',
// duration: 1500
})
// that.getDataListIos(that.courseId);
}
})
setTimeout(() => {
that.flagIos = true
}, 1500)
}
},
isCheckPayIos(code, name, order) {
if (code == 0) {
console.log('999999999999')
this.setPaymentIos(name, order);
} else {
uni.hideLoading();
uni.showToast({
title: '支付信息有误'
});
}
},
setPaymentIos(name, order) {
console.log(777777777, name, order)
uni.requestPayment({
provider: name,
orderInfo: order, //微信、支付宝订单数据
success: function(res) {
uni.hideLoading();
uni.showToast({
title: '支付成功',
icon: 'none'
})
setTimeout(function() {
uni.navigateTo({
url: '/me/order/index'
})
}, 1000)
},
fail: function(err) {
uni.hideLoading();
},
complete() {
uni.hideLoading();
}
});
},
callPayIos: function(response) {
if (typeof WeixinJSBridge === "undefined") {
if (document.addEventListener) {
document.addEventListener('WeixinJSBridgeReady', this.onBridgeReadyIos(response), false);
} else if (document.attachEvent) {
document.attachEvent('WeixinJSBridgeReady', this.onBridgeReadyIos(response));
document.attachEvent('onWeixinJSBridgeReady', this.onBridgeReadyIos(response));
}
} else {
this.onBridgeReadyIos(response);
}
},
onBridgeReadyIos: function(response) {
let that = this;
if (!response.package) {
return;
}
console.log("response)))):" + JSON.stringify(response))
WeixinJSBridge.invoke(
'getBrandWCPayRequest', {
"appId": response.appid, //公众号名称,由商户传入
"timeStamp": response.timestamp, //时间戳自1970年以来的秒数
"nonceStr": response.noncestr, //随机串
"package": response.package,
"signType": response.signType, //微信签名方式:
"paySign": response.sign //微信签名
},
function(res) {
if (res.err_msg === "get_brand_wcpay_request:ok") {
// 使用以上方式判断前端返回,微信团队郑重提示:
//res.err_msg将在用户支付成功后返回ok但并不保证它绝对可靠。
uni.hideLoading();
uni.showToast({
title: '支付成功',
icon: 'none'
})
uni.navigateTo({
url: '/me/order/index'
})
} else {
uni.hideLoading();
}
WeixinJSBridge.log(response.err_msg);
}
);
},
}
}
</script>
<style>
page {
background: #F5F5F5;
}
.popup_pay_ios {
background: #FFFFFF;
border-radius: 24rpx;
margin: 30rpx 30rpx;
padding: 30rpx 30rpx 20rpx 30rpx;
}
.taber_ios {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 99;
background: #FFFFFF;
padding: 10rpx 30rpx;
display: flex;
align-items: center;
justify-content: space-between;
}
.btn_ios {
width: 260rpx;
height: 78rpx;
background: #5074FF;
border-radius: 39rpx;
color: #FFFFFF;
text-align: center;
line-height: 78rpx;
font-size: 30rpx;
}
</style>