景徳镇旅游微信小程序
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.

143 lines
2.7 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  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. <image src="https://cdn.uviewui.com/uview/album/1.jpg" mode="aspectFill"/>
  8. <view class="text">
  9. <view class="title text-ellipsis">
  10. 瓷都镇区鼎
  11. </view>
  12. <view class="tip text-ellipsis">
  13. 盛时期瓷业生产核心区
  14. </view>
  15. </view>
  16. </view>
  17. <view class="situation-imgs-two">
  18. <image src="https://cdn.uviewui.com/uview/album/1.jpg" mode="aspectFill"/>
  19. <view class="text">
  20. <view class="title text-ellipsis">
  21. 瓷都镇区鼎
  22. </view>
  23. <view class="tip text-ellipsis">
  24. 盛时期瓷业生产核心区
  25. </view>
  26. </view>
  27. </view>
  28. <view class="situation-imgs-four">
  29. <view
  30. v-for="(item,index) in 4"
  31. :key="index">
  32. <image src="https://cdn.uviewui.com/uview/album/1.jpg" mode="aspectFill"/>
  33. <view class="text">
  34. <view class="title text-ellipsis">
  35. 瓷都镇区鼎
  36. </view>
  37. <view class="tip text-ellipsis">
  38. 盛时期瓷业生产核心区
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. <tabber />
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. data() {
  50. return {
  51. }
  52. },
  53. methods: {
  54. }
  55. }
  56. </script>
  57. <style scoped lang="scss">
  58. .situation {
  59. image{
  60. width: 100%;
  61. height: 100%;
  62. }
  63. .situation-imgs {
  64. width: 92%;
  65. margin-top: 20rpx;
  66. margin-left: 4%;
  67. .situation-imgs-one {
  68. height: 360rpx;
  69. position: relative;
  70. border-radius: 30rpx;
  71. overflow: hidden;
  72. .text{
  73. .title{
  74. font-size: 80rpx;
  75. }
  76. .tip{
  77. font-size: 45rpx;
  78. }
  79. }
  80. }
  81. .situation-imgs-two {
  82. margin-top: 20rpx;
  83. height: 300rpx;
  84. position: relative;
  85. border-radius: 30rpx;
  86. overflow: hidden;
  87. .text{
  88. .title{
  89. font-size: 60rpx;
  90. }
  91. .tip{
  92. font-size: 35rpx;
  93. }
  94. }
  95. }
  96. .situation-imgs-four {
  97. display: flex;
  98. flex-wrap: wrap;
  99. justify-content: space-between;
  100. >view {
  101. margin-top: 20rpx;
  102. width: 48%;
  103. height: 260rpx;
  104. position: relative;
  105. border-radius: 20rpx;
  106. overflow: hidden;
  107. .text{
  108. height: 70%;
  109. }
  110. }
  111. }
  112. }
  113. .text{
  114. font-family: 楷体;
  115. // font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  116. position: absolute;
  117. bottom: 0;
  118. left: 0;
  119. width: 100%;
  120. height: 100%;
  121. background-color: #00000066;
  122. color: #fff;
  123. display: flex;
  124. flex-direction: column;
  125. align-items: center;
  126. justify-content: center;
  127. font-weight: 900;
  128. .title{
  129. font-size: 34rpx;
  130. }
  131. .tip{
  132. font-size: 22rpx;
  133. margin-top: 10%;
  134. }
  135. }
  136. }
  137. </style>