| 123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="box" style="">
- <img src="https://filescdn.proginn.com/works_611648/works_611648/e737c13f1b8c0b2e5d04ac72c19ab181f7adb587.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 - 376px);
- img{
- width: 250px;
- height: 250px;
- }
- span{
- margin-top: 30px;
- font-weight: bold;
- font-size: 18px;
- }
- }
- </style>
|