howshare.vue 539 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <view class="howshare">
  3. <custom-nav :title="pageTitle"></custom-nav>
  4. <view class="content">
  5. <image src="https://api.jiuweiyun.cn/public/uploads/icon/helpshare.png" mode=""></image>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. pageTitle: '如何分享',
  14. scrollViewHeight: 0
  15. };
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. .howshare {
  21. @include page();
  22. .content {
  23. height: 100%;
  24. overflow: auto;
  25. image {
  26. width: 100%;
  27. height: 1740rpx;
  28. }
  29. }
  30. }
  31. </style>