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

118 lines
2.3 KiB

8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <view>
  3. <view class="card" v-for="(item,index) in 10" :key="index">
  4. <view class="card-img">
  5. <image src="../../static/applyRelic/jdz.png" mode="aspectFill"></image>
  6. </view>
  7. <view class="card-content">
  8. <view style="display: flex; align-items: center;">
  9. <view class="title text-ellipsis">刘申林</view>
  10. <image class="card-content-img" src="../../static/tell/goldMedal.png"></image>
  11. </view>
  12. <view class="card-content-tag">
  13. 提前一周预约
  14. </view>
  15. <view class="tips text-ellipsis-2">
  16. 御窑厂刘家弄观音阁观音阁观音阁观音阁陶瓷博物馆御窑博物馆...陶瓷博物馆御窑博物馆陶瓷博物馆御窑博物馆陶瓷博物馆御窑博物馆
  17. </view>
  18. <view class="card-content-bottom">
  19. <view style="color: #FF280C;">
  20. 300
  21. </view>
  22. <view class="card-content-bottom-one">
  23. 线上预约
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  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. .card {
  42. display: flex;
  43. width: 94%;
  44. margin: 40rpx 0 0 3%;
  45. align-items: center;
  46. .card-img {
  47. height: 270rpx;
  48. width: 240rpx;
  49. flex-shrink: 0;
  50. image {
  51. height: 100%;
  52. width: 100%;
  53. border-radius: 20rpx;
  54. }
  55. }
  56. .card-content {
  57. margin-left: 3%;
  58. font-size: 28rpx;
  59. display: flex;
  60. flex-direction: column;
  61. justify-content: space-around;
  62. width: 97%;
  63. .title{
  64. max-width: 260rpx;
  65. }
  66. .card-content-img {
  67. display: flex;
  68. margin-left: 10rpx;
  69. width: 130rpx;
  70. height: 50rpx;
  71. }
  72. .card-content-tag {
  73. display: inline-block;
  74. font-size: 24rpx;
  75. padding: 2rpx 20rpx;
  76. border: 2rpx solid #FBA21E;
  77. background-color: #FFF1D2;
  78. color: #FBAF35;
  79. border-radius: 20rpx;
  80. width: fit-content;
  81. }
  82. .tips{
  83. font-size: 24rpx;
  84. color: #999;
  85. }
  86. .card-content-bottom {
  87. display: flex;
  88. justify-content: space-between;
  89. align-items: center;
  90. .card-content-bottom-one {
  91. display: inline-block;
  92. color: #FFFDF6;
  93. background-color: #C83741;
  94. margin-right: 4%;
  95. padding: 12rpx 30rpx;
  96. border-radius: 40rpx;
  97. font-size: 24rpx;
  98. }
  99. }
  100. view {
  101. margin-top: 10rpx;
  102. }
  103. }
  104. }
  105. </style>