weiChat.vue 623 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <!-- 临时卡领取页面 -->
  3. <view class="container">
  4. <view class="content">
  5. <image :src="imgUrl" mode="aspectFit" />
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. imgUrl: "../../static/images/card_get.png",
  14. };
  15. },
  16. created() {
  17. },
  18. methods: {
  19. },
  20. };
  21. </script>
  22. <style lang="scss" scoped>
  23. .container{
  24. width: 748rpx;
  25. height: 1334rpx;
  26. background: #fff;
  27. }
  28. .content {
  29. width: 100%;
  30. height: 100%;
  31. margin: 0 auto;
  32. background-attachment: inherit;
  33. background-repeat: no-repeat;
  34. image {
  35. width: 748rpx;
  36. height: 1334rpx;
  37. }
  38. }
  39. </style>