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

119 lines
2.1 KiB

9 months ago
9 months ago
9 months ago
9 months ago
  1. <template>
  2. <!-- 申请遗迹 -->
  3. <view class="apply">
  4. <navbar title="申请遗迹" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="top-img">
  6. <image src="../static/applyRelic/jdz.png" mode="aspectFill" style="width: 100%; height: 100%;"></image>
  7. </view>
  8. <view class="middle-box">
  9. <view class="middle-img">
  10. <view>
  11. <image src="../static/applyRelic/2.png" mode="aspectFill" />
  12. </view>
  13. <view>
  14. <image src="../static/applyRelic/2.png" mode="aspectFill" />
  15. </view>
  16. <view>
  17. <image src="../static/applyRelic/2.png" mode="aspectFill" />
  18. </view>
  19. </view>
  20. <view class="middle-font">
  21. <view>
  22. 申请历程
  23. </view>
  24. <view>
  25. 申遗缘由
  26. </view>
  27. <view>
  28. 遗产价值
  29. </view>
  30. </view>
  31. </view>
  32. <view class="apply-list">
  33. <uv-list @scrolltolower="scrolltolower">
  34. <uv-list-item
  35. title="景德镇:保护文化遗产,复兴千年瓷都"
  36. note="2024-09-01"
  37. border="true"
  38. v-for="(item,index) in 10" :key="index"
  39. >
  40. <template #footer>
  41. <uv-image src="https://cdn.uviewui.com/uview/album/1.jpg" radius="10rpx" width="240rpx"
  42. height="160rpx" />
  43. </template>
  44. </uv-list-item>
  45. </uv-list>
  46. </view>
  47. <tabber />
  48. </view>
  49. </template>
  50. <script>
  51. export default {
  52. data() {
  53. return {
  54. }
  55. },
  56. methods: {
  57. }
  58. }
  59. </script>
  60. <style scoped lang="scss">
  61. .apply {
  62. .top-img {
  63. height: 380rpx;
  64. }
  65. .middle-box {
  66. display: flex;
  67. position: relative;
  68. height: 220rpx;
  69. align-items: center;
  70. justify-content: space-around;
  71. background-color: #fff;
  72. .middle-img {
  73. display: flex;
  74. align-items: center;
  75. justify-content: space-around;
  76. width: 100%;
  77. view {
  78. width: 160rpx;
  79. height: 160rpx;
  80. image {
  81. width: 100%;
  82. height: 100%;
  83. }
  84. }
  85. }
  86. .middle-font {
  87. position: absolute;
  88. display: flex;
  89. width: 100%;
  90. justify-content: space-around;
  91. view {
  92. width: 60rpx;
  93. color: #FFFDF6;
  94. font-weight: 600;
  95. }
  96. }
  97. }
  98. .apply-list {
  99. width: 94%;
  100. margin-left: 3%;
  101. /deep/ .uv-list-item{
  102. background-color: #FFFDF6 !important;
  103. }
  104. }
  105. }
  106. </style>