123456789101112131415161718192021222324252627282930313233 |
- <template>
- <view class="">
- <view class="title">
- 请长按图片关注公众号进行办理
- </view>
- <view class="ma">
- <image src="../../../static/images/index/ma.jpeg" mode="widthFix" show-menu-by-longpress="true"></image>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss">
- .title {
- font-weight: 550;
- text-align: center;
- font-size: 18px;
- padding: 20px 0 0;
- }
- .ma {
- width: 80vw;
- height: 80vw;
- margin: 0 auto;
- image {
- width: 80vw;
- height: 80vw;
- }
- }
- </style>
|