268 lines
5.9 KiB
Vue
268 lines
5.9 KiB
Vue
<template>
|
|
<div>
|
|
<ErrorMessage
|
|
class="mt-3"
|
|
:message="$resources.createWeChatPayOrder.error || error"
|
|
/>
|
|
<div class="mt-4 flex w-full justify-end">
|
|
<Button
|
|
variant="solid"
|
|
class="wechat-pay-btn"
|
|
:loading="$resources.createWeChatPayOrder.loading || loading"
|
|
@click="processWeChatPayment"
|
|
>
|
|
{{ $t('Pay with WeChat Pay') }}
|
|
</Button>
|
|
</div>
|
|
|
|
<!-- Use Teleport to move modal to body -->
|
|
<Teleport to="body">
|
|
<div v-if="showQRCode" class="wechat-qrcode-overlay">
|
|
<div class="wechat-qrcode-modal">
|
|
<div class="relative mb-4">
|
|
<div class="flex items-center justify-center">
|
|
<WeChatPayLogo />
|
|
</div>
|
|
<button @click="closeQRCode" class="close-button">
|
|
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="text-center mb-5">
|
|
<div class="text-sm text-gray-600 mb-2">{{ $t('Scan to Pay (CNY)') }}</div>
|
|
<div class="text-3xl font-bold text-[#FF0036]">{{ amount }} {{ $t('CNY') }}</div>
|
|
</div>
|
|
|
|
<div class="flex justify-center">
|
|
<div v-if="qrCodeImage" class="qrcode-container">
|
|
<img :src="qrCodeImage" :alt="$t('WeChat Pay QR Code')" class="qrcode-image" />
|
|
</div>
|
|
<div v-else class="qrcode-loading"></div>
|
|
</div>
|
|
|
|
<div class="mt-5 text-center text-sm">
|
|
<div class="text-gray-600">{{ $t('Please scan the QR code with WeChat to complete payment') }}</div>
|
|
<div class="text-gray-500 mt-1">{{ $t('QR code valid for 15 minutes') }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Teleport>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { toast } from 'vue-sonner';
|
|
import { DashboardError } from '../utils/error';
|
|
import { Teleport } from 'vue'; // Ensure Teleport is imported
|
|
import WeChatPayLogo from '../logo/WeChatPayLogo.vue';
|
|
|
|
export default {
|
|
name: 'BuyPrepaidCreditsWeChatPay',
|
|
components: {
|
|
WeChatPayLogo
|
|
},
|
|
props: {
|
|
amount: {
|
|
default: 0
|
|
},
|
|
minimumAmount: {
|
|
default: 0
|
|
},
|
|
isOnboarding: {
|
|
default: false
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
loading: false,
|
|
error: null,
|
|
showQRCode: false,
|
|
qrCodeUrl: null,
|
|
qrCodeImage: null,
|
|
orderId: null,
|
|
checkInterval: null
|
|
};
|
|
},
|
|
resources: {
|
|
createWeChatPayOrder() {
|
|
return {
|
|
url: 'jcloud.api.billing.create_wechatpay_order_for_recharge',
|
|
params: {
|
|
amount: this.amount
|
|
},
|
|
validate() {
|
|
if (this.amount <= 0) {
|
|
throw new DashboardError(this.$t('Payment amount must be greater than 0'));
|
|
}
|
|
if (this.amount < this.minimumAmount) {
|
|
throw new DashboardError(this.$t('Amount is below the minimum required amount'));
|
|
}
|
|
},
|
|
onSuccess(response) {
|
|
console.log('WeChat Pay response:', response);
|
|
this.orderId = response.order_id;
|
|
this.qrCodeUrl = response.qr_code_url;
|
|
this.qrCodeImage = response.qr_code_image;
|
|
this.showQRCode = true;
|
|
this.startPaymentCheck();
|
|
}
|
|
};
|
|
},
|
|
checkPaymentStatus() {
|
|
return {
|
|
url: 'jcloud.api.billing.check_payment_status',
|
|
params: {
|
|
order_id: this.orderId,
|
|
payment_type: 'wechatpay'
|
|
},
|
|
onSuccess(data) {
|
|
// Check for success status (handles both English and Chinese status values from backend)
|
|
if (data && (data.status === 'Success' || data.status === '已支付' || data.status === '交易成功')) {
|
|
this.stopPaymentCheck();
|
|
this.closeQRCode();
|
|
this.$emit('payment-success');
|
|
toast.success(this.$t('Payment successful'));
|
|
}
|
|
}
|
|
};
|
|
}
|
|
},
|
|
methods: {
|
|
processWeChatPayment() {
|
|
this.$resources.createWeChatPayOrder.submit();
|
|
},
|
|
|
|
startPaymentCheck() {
|
|
this.checkInterval = setInterval(() => {
|
|
this.$resources.checkPaymentStatus.submit();
|
|
}, 3000);
|
|
},
|
|
|
|
stopPaymentCheck() {
|
|
if (this.checkInterval) {
|
|
clearInterval(this.checkInterval);
|
|
this.checkInterval = null;
|
|
}
|
|
},
|
|
|
|
checkPaymentStatus() {
|
|
this.$resources.checkPaymentStatus.submit();
|
|
},
|
|
|
|
closeQRCode() {
|
|
this.stopPaymentCheck();
|
|
this.showQRCode = false;
|
|
this.qrCodeUrl = null;
|
|
this.qrCodeImage = null;
|
|
}
|
|
},
|
|
beforeUnmount() {
|
|
this.stopPaymentCheck();
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.wechat-pay-btn {
|
|
background-color: #07C160 !important;
|
|
border: none;
|
|
color: white;
|
|
border-radius: 4px;
|
|
font-size: 1rem;
|
|
padding: 0.625rem 1.25rem;
|
|
transition: all 0.2s ease;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.wechat-pay-btn:hover {
|
|
background-color: #06ad56 !important;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
/* Modal overlay styles */
|
|
.wechat-qrcode-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 99999; /* Very high z-index to ensure it's on top */
|
|
}
|
|
|
|
.wechat-qrcode-modal {
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 24px;
|
|
width: 90%;
|
|
max-width: 420px;
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
|
|
position: relative;
|
|
}
|
|
|
|
.close-button {
|
|
position: absolute;
|
|
top: -12px;
|
|
right: -12px;
|
|
background: #f3f4f6;
|
|
border-radius: 50%;
|
|
width: 30px;
|
|
height: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: none;
|
|
cursor: pointer;
|
|
color: #6b7280;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.close-button:hover {
|
|
background: #e5e7eb;
|
|
color: #374151;
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.qrcode-container {
|
|
height: 250px;
|
|
width: 250px;
|
|
margin: 0 auto;
|
|
padding: 5px;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.qrcode-image {
|
|
height: 100%;
|
|
width: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.qrcode-loading {
|
|
height: 250px;
|
|
width: 250px;
|
|
margin: 0 auto;
|
|
background-color: #f3f4f6;
|
|
border-radius: 8px;
|
|
animation: pulse 1.5s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
opacity: 0.6;
|
|
}
|
|
50% {
|
|
opacity: 0.8;
|
|
}
|
|
100% {
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
</style> |