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

112 lines
1.9 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
10 months ago
10 months ago
10 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="我要研学" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="search">
  5. <uv-search
  6. placeholder="搜索服务"
  7. v-model="keyword"
  8. :animation="true"
  9. height="70"
  10. searchIconSize="44"
  11. >
  12. </uv-search>
  13. </view>
  14. <view class="list">
  15. <view class="item"
  16. v-for="(item,index) in 3"
  17. :key="index">
  18. <view class="image">
  19. <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode=""></image>
  20. <view class="type">
  21. 报名中
  22. </view>
  23. </view>
  24. <view class="info">
  25. <view class="title">
  26. 2024年景德镇艺术研学定金
  27. </view>
  28. <view class="price">
  29. 5000.00
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. <tabber/>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. }
  42. },
  43. methods: {
  44. }
  45. }
  46. </script>
  47. <style scoped lang="scss">
  48. .page{
  49. .search{
  50. background-color: #fff;
  51. height: 110rpx;
  52. width: 100%;
  53. uv-search{
  54. }
  55. }
  56. .list{
  57. .item{
  58. margin: 30rpx 20rpx 50rpx;
  59. padding: 20rpx;
  60. background-color: #fff;
  61. border-radius: 20rpx;
  62. box-shadow: 0 0 10rpx 10rpx #00000011;
  63. .image{
  64. width: 100%;
  65. height: 400rpx;
  66. position: relative;
  67. image{
  68. width: 100%;
  69. height: 90%;
  70. border-radius: 20rpx;
  71. margin-top: 10rpx;
  72. }
  73. .type{
  74. position: absolute;
  75. top: -10rpx;
  76. height: 62rpx;
  77. left: 30rpx;
  78. background-color: darkgoldenrod;
  79. color: #fff;
  80. font-size: 28rpx;
  81. padding: 0 18rpx;
  82. border-radius: 14rpx;
  83. line-height: 56rpx;
  84. }
  85. }
  86. .info{
  87. .title{
  88. margin-left: 14rpx;
  89. margin-bottom: 8rpx;
  90. font-size: 32rpx;
  91. font-weight: 700;
  92. }
  93. .price{
  94. font-size: 30rpx;
  95. margin-left: 12rpx;
  96. margin-bottom: 8rpx;
  97. color: darkgoldenrod;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. </style>