20 lines
539 B
Vue
20 lines
539 B
Vue
|
<script setup>
|
||
|
definePageMeta({
|
||
|
layout: 'default',
|
||
|
i18n: 'payment.text1',
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="w-[100vw] bg-[url('@/static/images/3532@2x.png')] bg-cover pt-43px flex-grow-1 flex flex-col pt-180px">
|
||
|
<div class="flex flex-col items-center">
|
||
|
<img class="w-119px h-120px mb-36px" src="@/static/images/5554@2x1.png" alt="">
|
||
|
<div class="text-#000 text-16px mb-25px">{{$t('payment.text2')}}!</div>
|
||
|
<div class="text-#999 text-16px">RMB5,000</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|