| 123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="box" style="">
- <img src="https://filescdn.proginn.com/works_611648/works_611648/843472daf491505361b11f2842023d6914a75db5.png">
- <span>微信扫码支付</span>
- </div>
- </template>
- <script>
- export default {
- }
- </script>
- <style scoped>
- .box{
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- height: calc(100vh - 576px);
- img{
- width: 250px;
- height: 250px;
- }
- span{
- margin-top: 30px;
- font-weight: bold;
- font-size: 18px;
- }
- }
- </style>
|