webview.vue 551 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="">
  3. <view class="title">
  4. 请长按图片关注公众号进行办理
  5. </view>
  6. <view class="ma">
  7. <image src="../../../static/images/index/ma.jpeg" mode="widthFix" show-menu-by-longpress="true"></image>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style lang="scss">
  14. .title {
  15. font-weight: 550;
  16. text-align: center;
  17. font-size: 18px;
  18. padding: 20px 0 0;
  19. }
  20. .ma {
  21. width: 80vw;
  22. height: 80vw;
  23. margin: 0 auto;
  24. image {
  25. width: 80vw;
  26. height: 80vw;
  27. }
  28. }
  29. </style>