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

110 lines
2.0 KiB

8 months ago
8 months ago
8 months ago
8 months ago
  1. <template>
  2. <!-- 我要研学 -->
  3. <view class="page">
  4. <navbar title="我要研学" leftClick @leftClick="$utils.navigateBack" />
  5. <view class="search">
  6. <uv-search
  7. placeholder="搜索服务"
  8. v-model="keyword"
  9. :animation="true"
  10. height="70"
  11. :showAction="false"
  12. searchIconSize="44"
  13. >
  14. </uv-search>
  15. </view>
  16. <view class="list">
  17. <view class="item"
  18. @click="$utils.navigateTo('/pages_order/service/StudyAndPathDetail?type=0&id=' + item.id)"
  19. v-for="(item,index) in 3"
  20. :key="index">
  21. <view class="image">
  22. <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode=""></image>
  23. <view class="type">
  24. 报名中
  25. </view>
  26. </view>
  27. <view class="info">
  28. <view class="title text-ellipsis">
  29. 2024年景德镇艺术研学定金
  30. </view>
  31. <view class="price">
  32. 5000.00
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <tabber/>
  38. </view>
  39. </template>
  40. <script>
  41. export default {
  42. data() {
  43. return {
  44. }
  45. },
  46. methods: {
  47. }
  48. }
  49. </script>
  50. <style scoped lang="scss">
  51. .page{
  52. .search{
  53. background-color: #fff;
  54. padding: 20rpx;
  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>