image.vue 843 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view>
  3. <page-head :title="title"></page-head>
  4. <view class="uni-padding-wrap uni-common-mt">
  5. <view class="uni-title">
  6. 示例1 <text>\n本地图片</text>
  7. </view>
  8. <view class="uni-center" style="background:#FFFFFF; font-size:0;">
  9. <image class="image" mode="widthFix" src="../../../static/uni.png" />
  10. </view>
  11. <view class="uni-title uni-common-mt">
  12. 示例2 <text>\n网络图片</text>
  13. </view>
  14. <view class="uni-center" style="background:#FFFFFF; font-size:0;">
  15. <image class="image" mode="widthFix" src="https://vkceyugu.cdn.bspapp.com/VKCEYUGU-dc-site/ceb770c0-5164-11eb-8a36-ebb87efcf8c0.png" />
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. title: 'image'
  25. }
  26. }
  27. }
  28. </script>
  29. <style>
  30. .image {
  31. margin:40rpx 0;
  32. width: 200rpx;
  33. }
  34. </style>