| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- <template>
- <view @click="tooltipShow=false">
- <u-navbar :is-back="false" title="支付结果"></u-navbar>
- <view class="content">
- <image :src="payData.icon" mode=""></image>
- <view class="tips">
- <text class="title">{{payData.title}}</text>
- <text class="desc" v-if="payData.payStatus!=1">{{payData.desc}}</text>
- <view v-else class="desc" id="tips1" @click.stop="showTips('tips1')">
- <text >已支付 {{payResult.totalPrice || 0}} 元</text>
- <text class="cuIcon-question" style="margin-left: 5rpx;"></text>
- </view>
- </view>
- <view class="cu-btn btn radius line-gray" @click.stop="confirm">
- 确认
- </view>
- </view>
-
- <tooltips
- gravity="bottom"
- :tooltipShow="tooltipShow"
- :btns="tooltipBtns"
- :eleId="eleId"></tooltips>
- </view>
- </template>
- <script>
- import tooltips from '../../comps/tooltips/tooltips.vue'
- export default {
- components:{
- tooltips
- },
- data() {
- return {
- tooltipShow:false,
- tooltipBtns:[''],
- eleId:"",
-
- payResult:{},
- payData:{
- payStatus:0,
- title:'支付处理中',
- desc:'正在处理中,请等待',
- icon:"/pagesC/static/pay-handel.png"
- }
- }
- },
- onLoad(options) {
- if (this.$isEmpty(options.payResult)) {
- this.$dialog.showModalAndBack('支付结果不能为空')
- return
- }
- this.payResult=JSON.parse(options.payResult)
- this.handelPayResult()
- },
- methods: {
- showTips(id){
- let tipsTxt1='现金支付 '+this.payResult.amountNum+" 元"
- let tipsTxt2='积分支付 '+this.payResult.pointsNum+" 元"
- this.tooltipBtns=[tipsTxt1,tipsTxt2]
- this.tooltipShow = true;
- this.eleId =id;
- },
- confirm(){
- uni.reLaunch({
- url:'/pages/mine/mine'
- })
- },
- //处理支付回调结果
- handelPayResult(){
- if (this.payResult.isSuccess==true) {
- this.changePayData(1)
- }
- if (this.payResult.isSuccess==false) {
- this.changePayData(2)
- }
- },
- changePayData(type){
- if (type==1) {
- this.payData={
- payStatus:1,
- title:'支付成功',
- icon:"/pagesC/static/pay-success.png"
- }
- }else if (type==2) {
- this.payData={
- payStatus:2,
- title:'支付失败',
- desc:this.payResult.msg,
- icon:"/pagesC/static/pay-fail.png"
- }
- }
- },
- }
- }
- </script>
- <style>
- page{
- background-color: #FFFFFF;
- }
- </style>
- <style lang="scss" scoped>
- .content{
- margin-top: 180rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
-
- image{
- width: 150rpx;
- height: 150rpx;
- }
-
- .tips{
- margin-top: 50rpx;
- display: flex;
- flex-direction: column;
- text-align: center;
-
- .title{
- font-size: 38rpx;
- }
-
- .desc{
- margin-top: 20rpx;
- font-size: 28rpx;
- color: #969696;
- }
- }
-
- .btn{
- margin-top: 180rpx;
- width: 60%;
- padding: 42rpx;
- }
- }
- </style>
|