Commit 9c854fd2 authored by 罗超's avatar 罗超

1

parent 991c41e9
......@@ -688,14 +688,7 @@ export default {
data.CoverImg = this.currentPriceInfo.CoverImg;
let myData = JSON.stringify(data);
this.orderData = encodeURIComponent(myData);
// this.queren(data.OrderId);
let obj = {
TradeNo: "2021101322001457051451455636",
OrderNo: data.OrderNo,
OrderId: data.OrderId,
preferPrice: data.PreferPrice,
};
this.payAliCallback(obj);
this.queren(data.OrderId);
} else {
}
this.submit = false;
......@@ -743,7 +736,10 @@ export default {
});
setTimeout(() => {
uni.redirectTo({
url: "/pages/jiuzhai/paysuccess?PreferPrice=" + this.price,
url:
"/pages/jiuzhai/paysuccess?PreferPrice=" +
this.price +
"&isFrom=1",
});
}, 100);
},
......@@ -875,7 +871,6 @@ export default {
(res) => {
this.orderInfo = JSON.parse(res.data);
if (res.data) {
// that.PayAli(res.data, data);
let cbObj = {
TradeNo: res.data,
OrderNo: data.OrderNo,
......@@ -915,7 +910,6 @@ export default {
},
});
},
// #endif
payAliCallback(obj) {
this.request2(
{
......@@ -933,7 +927,10 @@ export default {
console.log("cb", res);
this.submit = false;
uni.redirectTo({
url: "/pages/jiuzhai/paysuccess?PreferPrice=" + obj.preferPrice,
url:
"/pages/jiuzhai/paysuccess?PreferPrice=" +
obj.preferPrice +
"&isFrom=1",
});
},
(err) => {
......@@ -951,6 +948,7 @@ export default {
}
);
},
// #endif
},
};
</script>
......@@ -596,7 +596,7 @@
@click="goback"
style="background: #fff; color: #111; border: 1px solid #111"
v-if="!showPayBtn"
>取消
>关闭
</view>
</view>
<view style="display: flex; margin-left: 30rpx">
......@@ -881,7 +881,6 @@ export default {
});
},
payAliCallback(obj) {
console.log(893), Obj;
let that = this;
this.request2(
{
......@@ -896,18 +895,11 @@ export default {
},
},
(res) => {
console.log("cb", res);
// uni.redirectTo({
// url:
// "/pages/jiuzhai/paysuccess?PreferPrice=" +
// obj.PreferPrice +
// "&isFrom=1",
// });
that.submit = false;
that.initOrderInfo(that.orderData.model.OrderId);
},
(err) => {
console.log("cb2", err);
console.log("err", err);
uni.showToast({
title: "支付失败",
icon: "none",
......
<template>
<view class="paySuccess">
<view style="background: #fff;">
<view class="img-box">
<img src="/static/images/icon/pay-success.png" class="img" />
</view>
<view class="title">订单支付成功</view>
<view class="price">实付 ¥{{PreferPrice}}</view>
<view class="btn-box">
<u-button style="display: inline-block;" shape="circle" :custom-style="customStyle" @click="goHome">返回首页</u-button>
<u-button shape="circle" style="margin-left: 60rpx; display: inline-block;" :custom-style="themCustomStyle"
@click.stop="redictToOrders">查看订单</u-button>
</view>
</view>
</view>
<view class="paySuccess">
<view style="background: #fff">
<view class="img-box">
<img src="/static/images/icon/pay-success.png" class="img" />
</view>
<view class="title">订单支付成功</view>
<view class="price">实付 ¥{{ PreferPrice }}</view>
<view class="btn-box">
<u-button shape="circle" :custom-style="customStyle" @click="goHome"
>返回首页</u-button
>
<u-button
shape="circle"
:custom-style="themCustomStyle"
@click="redictToOrders"
>查看订单</u-button
>
</view>
</view>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
customStyle: {
marginLeft: "20px",
padding: "0 30rpx",
},
themCustomStyle: {
marginLeft: "20px",
padding: "0 30rpx",
},
mainColor: "",
recommend: [],
payInfo: {},
showCoupons: false,
couponMessage: '',
PreferPrice:'',
isLineOrder:0,
};
},
onLoad(option) {
if (option.PreferPrice) {
this.PreferPrice = option.PreferPrice
}
uni.setNavigationBarTitle({
title: "支付成功",
});
this.mainColor = this.$uiConfig.mainColor;
this.themCustomStyle.color = this.mainColor;
this.themCustomStyle.borderColor = this.mainColor;
if(option.isFrom){
this.isLineOrder=option.isFrom
}
},
methods: {
redictToOrders() {
if(this.isLineOrder==0){
uni.redirectTo({
url: '/pages/jiuzhai/allorderList'
});
}else if(this.isLineOrder==1){
uni.redirectTo({
url: '/pages/jiuzhai/jz_MyOrder'
});
}else if(this.isLineOrder==2){//司导订单
uni.redirectTo({
url: '/pages/guidecar/orderList'
});
}
},
goHome() {
uni.reLaunch({
url: "/pages/index/index",
});
},
},
};
export default {
components: {},
data() {
return {
customStyle: {
width: "150rpx",
padding: "0 30rpx",
},
themCustomStyle: {
width: "150rpx",
marginLeft: "60rpx",
padding: "0 30rpx",
},
mainColor: "",
recommend: [],
payInfo: {},
showCoupons: false,
couponMessage: "",
PreferPrice: "",
isLineOrder: 0,
};
},
onLoad(option) {
if (option.PreferPrice) {
this.PreferPrice = option.PreferPrice;
}
uni.setNavigationBarTitle({
title: "支付成功",
});
this.mainColor = this.$uiConfig.mainColor;
this.themCustomStyle.color = this.mainColor;
this.themCustomStyle.borderColor = this.mainColor;
if (option.isFrom) {
this.isLineOrder = option.isFrom;
}
},
methods: {
redictToOrders() {
if (this.isLineOrder == 0) {
uni.redirectTo({
url: "/pages/jiuzhai/allorderList",
});
} else if (this.isLineOrder == 1) {
uni.redirectTo({
url: "/pages/jiuzhai/jz_MyOrder",
});
} else if (this.isLineOrder == 2) {
//司导订单
uni.redirectTo({
url: "/pages/guidecar/orderList",
});
}
},
goHome() {
uni.reLaunch({
url: "/pages/index/index",
});
},
},
};
</script>
<style>
.paySuccess {
min-height: 100vh;
padding-bottom: 40rpx;
background: #f5f5f5;
}
.paySuccess {
min-height: 100vh;
padding-bottom: 40rpx;
background: #f5f5f5;
}
.paySuccess .img-box {
display: flex;
align-items: center;
justify-content: center;
}
.paySuccess .img-box {
display: flex;
align-items: center;
justify-content: center;
}
.paySuccess .img-box .img {
width: 256rpx;
height: 256rpx;
padding: 60rpx 0 0 0;
}
.paySuccess .img-box .img {
width: 256rpx;
height: 256rpx;
padding: 60rpx 0 0 0;
}
.paySuccess .title {
padding: 40rpx 0 20rpx 0;
font-size: 32rpx;
color: #000;
font-weight: 600;
text-align: center;
}
.paySuccess .title {
padding: 40rpx 0 20rpx 0;
font-size: 32rpx;
color: #000;
font-weight: 600;
text-align: center;
}
.paySuccess .price {
font-size: 30rpx;
color: gray;
padding-bottom: 60rpx;
text-align: center;
}
.paySuccess .price {
font-size: 30rpx;
color: gray;
padding-bottom: 60rpx;
text-align: center;
}
.paySuccess .btn-box {
padding-bottom: 60rpx;
text-align: center;
}
.paySuccess .btn-box {
padding-bottom: 60rpx;
text-align: center;
display: flex;
justify-content: center;
}
</style>
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