景徳镇旅游微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
1.6 KiB

  1. <template>
  2. <!-- 遗产概况 -->
  3. <view class="situation">
  4. <navbar title="遗产概况" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="situation-imgs">
  6. <view class="situation-imgs-one">
  7. <uv-image src="https://cdn.uviewui.com/uview/album/1.jpg" radius="12rpx" width="100%" height="100%" />
  8. </view>
  9. <view class="situation-imgs-two">
  10. <uv-image src="https://cdn.uviewui.com/uview/album/1.jpg" width="100%" height="100%" />
  11. </view>
  12. <view class="situation-imgs-four">
  13. <view>
  14. <uv-image src="https://cdn.uviewui.com/uview/album/1.jpg" mode="aspectFit" width="100%" height="100%" />
  15. </view>
  16. <view>
  17. <uv-image src="https://cdn.uviewui.com/uview/album/1.jpg" mode="aspectFit" width="100%" height="100%" />
  18. </view>
  19. <view>
  20. <uv-image src="https://cdn.uviewui.com/uview/album/1.jpg" mode="aspectFit" width="100%" height="100%" />
  21. </view>
  22. <view>
  23. <uv-image src="https://cdn.uviewui.com/uview/album/1.jpg" mode="aspectFit" width="100%" height="100%" />
  24. </view>
  25. </view>
  26. </view>
  27. <tabber />
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. }
  35. },
  36. methods: {
  37. }
  38. }
  39. </script>
  40. <style scoped lang="scss">
  41. .situation {
  42. .situation-imgs {
  43. width: 92%;
  44. margin-top: 20rpx;
  45. margin-left: 4%;
  46. .situation-imgs-one {
  47. height: 360rpx;
  48. }
  49. .situation-imgs-two {
  50. margin-top: 10rpx;
  51. height: 300rpx;
  52. }
  53. .situation-imgs-four {
  54. display: flex;
  55. flex-wrap: wrap;
  56. justify-content: space-between;
  57. view {
  58. width: 48%;
  59. height: 260rpx;
  60. }
  61. }
  62. }
  63. }
  64. </style>