share.vue 641 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view>
  3. <es-nav-title title="医生拉新" bg="none"></es-nav-title>
  4. <!-- <view class="img" :style="'background-image: url('+img+');'"></view> -->
  5. <image :src="img" style="width: 100%;height: auto;display: block;" mode="widthFix"></image>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. img:'/static/images/other/user/share-img.jpg',
  13. }
  14. },
  15. onLoad(options) {
  16. },
  17. methods: {
  18. }
  19. }
  20. </script>
  21. <style>
  22. /* .img{
  23. position: fixed;
  24. top:0;
  25. left:0;
  26. width: 100%;
  27. height: 100%;
  28. background-size: 100% auto;
  29. background-repeat: no-repeat;
  30. } */
  31. </style>