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

124 lines
2.4 KiB

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