| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <!-- 临时卡领取页面 -->
- <view class="container">
- <view class="content">
- <image :src="imgUrl" mode="aspectFit" />
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- imgUrl: "../../static/images/card_get.png",
- };
- },
- created() {
- },
- methods: {
- },
- };
- </script>
- <style lang="scss" scoped>
- .container{
- width: 748rpx;
- height: 1334rpx;
- background: #fff;
- }
- .content {
- width: 100%;
- height: 100%;
- margin: 0 auto;
- background-attachment: inherit;
- background-repeat: no-repeat;
- image {
- width: 748rpx;
- height: 1334rpx;
- }
- }
- </style>
|