Commit 78d0702e authored by 潘永坪's avatar 潘永坪

订单支付修改

parent c4e51a7b
...@@ -95,7 +95,6 @@ export default { ...@@ -95,7 +95,6 @@ export default {
background: #F7F7F7; background: #F7F7F7;
height:100vh; height:100vh;
} }
view, view,
text, text,
image, image,
...@@ -110,7 +109,6 @@ export default { ...@@ -110,7 +109,6 @@ export default {
textarea { textarea {
box-sizing: border-box; box-sizing: border-box;
} }
.btn { .btn {
background: linear-gradient(132deg, #ED400C 0%, #FB862C 100%); background: linear-gradient(132deg, #ED400C 0%, #FB862C 100%);
display: inline-block; display: inline-block;
......
...@@ -73,7 +73,8 @@ export default { ...@@ -73,7 +73,8 @@ export default {
orderId: '', //订单Id orderId: '', //订单Id
openid: '', //用户Id openid: '', //用户Id
afterBuyUrl: '', //支付成功后地址跳转 afterBuyUrl: '', //支付成功后地址跳转
ifyukuaiCode: '' //是否是渝快码跳入,渝快码跳入需要在H5端另外走流程 ifyukuaiCode: '' ,//是否是渝快码跳入,渝快码跳入需要在H5端另外走流程
albumOrderdetail:'',//是否跳影集订单详情
} }
}, },
onLoad(option) { onLoad(option) {
...@@ -92,6 +93,7 @@ export default { ...@@ -92,6 +93,7 @@ export default {
this.orderId = option.orderId||'' this.orderId = option.orderId||''
} }
this.ifyukuaiCode = option.ifyukuaiCode||'' this.ifyukuaiCode = option.ifyukuaiCode||''
this.albumOrderdetail=option.albumOrderdetail||''
this.openid = uni.getStorageSync('openid') || '' this.openid = uni.getStorageSync('openid') || ''
if (this.openid) { if (this.openid) {
this.initDetail() this.initDetail()
...@@ -158,6 +160,10 @@ export default { ...@@ -158,6 +160,10 @@ export default {
} }
this.$request('orderc/order/findOrderInfo', data).then(res => { this.$request('orderc/order/findOrderInfo', data).then(res => {
if (res.code == '00') { if (res.code == '00') {
if(this.albumOrderdetail=1){
//主要跳转影集订单详情,暂时是前端写死
this.afterBuyUrl='/pages/album/albumOrderdetail/albumOrderdetail'
}else{
if(res.data.orderType=='10'){ if(res.data.orderType=='10'){
//组合票和联票跳订单列表 //组合票和联票跳订单列表
this.afterBuyUrl='/pages/my/order/orderList/orderList' this.afterBuyUrl='/pages/my/order/orderList/orderList'
...@@ -165,6 +171,8 @@ export default { ...@@ -165,6 +171,8 @@ export default {
//单票跳详情 //单票跳详情
this.afterBuyUrl='/pages/my/order/electronicTicket/electronicTicket' this.afterBuyUrl='/pages/my/order/electronicTicket/electronicTicket'
} }
}
this.bodyShow = true this.bodyShow = true
//支付参数开始 //支付参数开始
this.timeStamp = res.data.timestamp this.timeStamp = res.data.timestamp
...@@ -179,7 +187,7 @@ export default { ...@@ -179,7 +187,7 @@ export default {
if (this.pdOrderMoney == 0 && res.data.subOrderType == -1) { if (this.pdOrderMoney == 0 && res.data.subOrderType == -1) {
this.afterBuyUrl='/pages/my/order/electronicTicket/electronicTicket' this.afterBuyUrl='/pages/my/order/electronicTicket/electronicTicket'
uni.navigateTo({ uni.navigateTo({
url: '/pages/payment/paySuccess/paySuccess?orderId=' + _this.orderId+'&afterBuyUrl=' + _this.afterBuyUrl + '&ifyukuaiCode=' + _this.ifyukuaiCode url: '/pages/payment/paySuccess/paySuccess?orderId=' + this.orderId+'&afterBuyUrl=' + this.afterBuyUrl + '&ifyukuaiCode=' + this.ifyukuaiCode
}) })
} }
this.errorMessage = res.data.errorMessage this.errorMessage = res.data.errorMessage
......
...@@ -155,7 +155,8 @@ export default { ...@@ -155,7 +155,8 @@ export default {
data() { data() {
return { return {
merchantId:'',//商户Id merchantId:'',//商户Id
tabbar:['热门景点','一日游','摄影/旅拍','文创DIY'],//tabbar标题列表 // tabbar:['热门景点','一日游','摄影/旅拍','文创DIY'],//tabbar标题列表
tabbar:['热门景点','一日游','摄影/旅拍'],//tabbar标题列表
active:0,//导航栏下标 active:0,//导航栏下标
imgList:[],//图片列表 imgList:[],//图片列表
scenicList:[],//景区数据 scenicList:[],//景区数据
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment