wx_kh.vue 553 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="box" style="">
  3. <img src="https://filescdn.proginn.com/works_611648/works_611648/843472daf491505361b11f2842023d6914a75db5.png">
  4. <span>微信扫码支付</span>
  5. </div>
  6. </template>
  7. <script>
  8. export default {
  9. }
  10. </script>
  11. <style scoped>
  12. .box{
  13. display: flex;
  14. justify-content: center;
  15. flex-direction: column;
  16. align-items: center;
  17. height: calc(100vh - 576px);
  18. img{
  19. width: 250px;
  20. height: 250px;
  21. }
  22. span{
  23. margin-top: 30px;
  24. font-weight: bold;
  25. font-size: 18px;
  26. }
  27. }
  28. </style>