兼兼街公众号代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
556 B

2 years ago
  1. <template>
  2. <view class="page">
  3. <view class="box">
  4. <image class="img" :src="src"></image>
  5. 正在为您拉起微信授权...
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default{
  11. props:{
  12. src: require('@/static/img/wechat-icon.png')
  13. },
  14. data(){
  15. return {
  16. }
  17. },
  18. methods:{
  19. }
  20. }
  21. </script>
  22. <style lang="scss" scoped>
  23. .page {
  24. width: 100vw;
  25. background-color: #fff;
  26. }
  27. .box {
  28. width: 500rpx;
  29. height: 800rpx;
  30. margin: 80rpx auto;
  31. text-align: center;
  32. }
  33. .img{
  34. width: 500rpx;
  35. height: 500rpx;
  36. }
  37. </style>