Commit e6a74664 authored by zhengke's avatar zhengke

修改

parent a2a16ae1
......@@ -703,7 +703,7 @@ export default {
icon: "success",
});
uni.navigateTo({
url: "/pages/jiuzhai/jz_MyOrder",
url: "/pages/jiuzhai/jz_ActivityList"
});
}
},
......
<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 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: {
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 .img-box {
display: flex;
align-items: center;
justify-content: center;
}
.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 .price {
font-size: 30rpx;
color: gray;
padding-bottom: 60rpx;
text-align: center;
}
.paySuccess .btn-box {
padding-bottom: 60rpx;
text-align: center;
display: flex;
justify-content: center;
}
</style>
......@@ -856,7 +856,7 @@ export default {
setTimeout(() => {
uni.redirectTo({
url:
"/pages/jiuzhai/paysuccess?PreferPrice=" +
"/pages/jiuzhai/jz_ActivePaySuccess?PreferPrice=" +
this.price +
"&isFrom=1",
});
......@@ -973,7 +973,7 @@ export default {
this.submit = false;
uni.redirectTo({
url:
"/pages/jiuzhai/paysuccess?PreferPrice=" +
"/pages/jiuzhai/jz_ActivePaySuccess?PreferPrice=" +
obj.preferPrice +
"&isFrom=1",
});
......
......@@ -210,11 +210,15 @@
<!-- #ifdef MP-ALIPAY -->
<subscribe-msg />
<!-- #endif -->
<tabbars></tabbars>
</view>
</template>
<script>
import tabbars from "@/components/tabbar/index";
export default {
components: {},
components: {
tabbars
},
data() {
return {
pageTitle: "活动订单",
......@@ -286,7 +290,7 @@ export default {
goOrderDetail(item) {
console.log(item);
uni.redirectTo({
url: "/pages/jiuzhai/jz_SureOrder?orderId=" + item.orderId,
url: "/pages/jiuzhai/jz_ActiveInfo?orderId=" + item.orderId,
});
},
change(i) {
......@@ -463,7 +467,7 @@ export default {
//todo
uni.redirectTo({
url:
"/pages/jiuzhai/paysuccess?PreferPrice=" +
"/pages/jiuzhai/jz_ActivePaySuccess?PreferPrice=" +
that.price +
"&isFrom=1",
});
......@@ -562,7 +566,7 @@ export default {
console.log("cb", res);
uni.redirectTo({
url:
"/pages/jiuzhai/paysuccess?PreferPrice=" +
"/pages/jiuzhai/jz_ActivePaySuccess?PreferPrice=" +
obj.preferPrice +
"&isFrom=1",
});
......
......@@ -210,11 +210,15 @@
<!-- #ifdef MP-ALIPAY -->
<subscribe-msg />
<!-- #endif -->
<tabbars></tabbars>
</view>
</template>
<script>
import tabbars from "@/components/tabbar/index";
export default {
components: {},
components: {
tabbars
},
data() {
return {
pageTitle: "线路订单",
......
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