pay.vue
3.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<template>
<LayoutApp :show-back="true" title="支付中">
<div class="timer-wrapper">
<div class="timer">{{count}}s</div>
</div>
<div class="tip">正在支付中…</div>
<div class="tip2">支付成功跳转成功页面,支付失败返回上一层</div>
<div class="btn-wrapper">
<YohoButton class="btn2 ok" txt="继续支付" @click="openPay"></YohoButton>
<YohoButton class="btn2" txt="支付完成" @click="goOk"></YohoButton>
</div>
</LayoutApp>
</template>
<script>
import config from 'config';
import { UserType } from 'store/order/order-confirm';
import YohoButton from '../../components/button';
export default {
name: 'PayPage',
components: { YohoButton },
props: ['orderCode', 'payParams', 'extra'],
data() {
return {
count: 60,
page: null,
timer: null
};
},
mounted() {
if (this.payParams) {
this.openPay();
}
this.setCount();
if (this.extra) {
this.page = JSON.parse(this.extra || '{}');
}
},
beforeRouteLeave () {
if (this.timer) {
clearTimeout(this.timer);
}
},
methods: {
openPay() {
const url = config.alipayUrl + '?' + this.payParams;
// window.location.href = url;
},
setCount() {
if (this.count > 0) {
this.timer = setTimeout(() => {
this.count = this.count - 1;
this.setCount();
}, 1000);
} else {
this.goOk();
}
},
check() {
},
goOk() {
this.$router.replace(this.page?.forward);
},
goDetail() {
switch (this.page.type) {
case UserType.sell: {
this.$router.replace({
name: 'sellOrderDetail',
params: {
owner: UserType.sell,
code: this.orderCode
}
});
break;
}
case UserType.buy: {
this.$router.replace({
name: 'buyOrderDetail',
params: {
owner: UserType.buy,
code: this.orderCode
}
});
break;
}
default: {
this.goList();
}
}
},
goList() {
switch (this.page.type) {
case UserType.sell: {
this.$router.replace({
name: 'InSaleOrderList',
});
break;
}
case UserType.buy: {
this.$router.replace({
name: 'OrderList',
params: {
owner: UserType.buy
}
});
break;
}
default: {
this.$router.replace({
name: 'OrderList',
params: {
owner: UserType.buy
}
});
break;
}
}
}
}
};
</script>
<style lang="scss" scoped>
.timer-wrapper {
margin-top: 60px;
text-align: center;
}
.timer {
display: inline-block;
width: 120px;
height: 120px;
border-radius: 60px;
border: 5px solid black;
font-size: 40px;
text-align: center;
line-height: 110px;
font-weight: bolder;
}
.tip {
font-size: 32px;
font-weight: bold;
text-align: center;
margin-top: 20px;
}
.tip2 {
font-size: 28px;
color: #999;
text-align: center;
margin-top: 66px;
}
.btn-wrapper {
margin-top: 100px;
padding: 0 40px;
display: flex;
justify-content: space-between;
}
.btn2 {
width: 320px;
height: 88px;
background: #fff;
border: 1px solid #ccc;
border-radius: 44px;
font-size: 32px;
text-align: center;
line-height: 88px;
}
.ok {
background: white !important;
color: black !important;
}
</style>