image.vue 989 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. <!-- #ifdef MP-ALIPAY -->
  10. <image class="image" mode="widthFix" src="../../../static/uni.png" />
  11. <!-- #endif -->
  12. <!-- #ifndef MP-ALIPAY -->
  13. <image class="image" mode="widthFix" src="../../../static/uni.png" />
  14. <!-- #endif -->
  15. </view>
  16. <view class="uni-title uni-common-mt">
  17. 示例2 <text>\n网络图片</text>
  18. </view>
  19. <view class="uni-center" style="background:#FFFFFF; font-size:0;">
  20. <image class="image" mode="widthFix" src="https://img-cdn-qiniu.dcloud.net.cn/uniapp/images/uni@2x.png" />
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. title: 'image'
  30. }
  31. }
  32. }
  33. </script>
  34. <style>
  35. .image {
  36. margin:40rpx 0;
  37. width: 200rpx;
  38. }
  39. </style>