modelThree.vue 777 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <image class="topIMg" src="http://dmsimg.66km.com/thFiles/7C057545-E11E-40F5-AD3C-637EF653B417.jpg" mode=""></image>
  5. <image src="../../static/img/icon_fangda@2x.png" mode="" class="enlarge"></image>
  6. </view>
  7. <view style="height: 20rpx;background: #F4F5F7;"></view>
  8. <view class="mainBox">
  9. <view class="mainTop">
  10. view.
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. title: 'Hello'
  20. }
  21. },
  22. onLoad() {
  23. },
  24. methods: {
  25. }
  26. }
  27. </script>
  28. <style scoped>
  29. .topIMg{
  30. width: 100%; display: block;
  31. }
  32. .top{
  33. position: relative;
  34. }
  35. .enlarge{
  36. position: absolute;
  37. width: 44rpx;height: 44rpx;
  38. right: 30rpx;bottom: 34rpx;
  39. }
  40. </style>