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

160 lines
2.7 KiB

9 months ago
  1. <template>
  2. <view class="page">
  3. <navbar title="提交预约" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="box">
  5. <view class="info">
  6. <view class="title">
  7. 遗产讲述
  8. </view>
  9. <view class="tips">
  10. 开放时间06:00-21:00
  11. </view>
  12. <view class="tips">
  13. 开放时间06:00-21:00
  14. </view>
  15. </view>
  16. <view class="form-time">
  17. <!-- 预约日期 -->
  18. <view class="title">
  19. 预约日期
  20. </view>
  21. <view class="line">
  22. <view class="">
  23. 2024
  24. <view class="icon">
  25. <uv-icon
  26. name="arrow-down"
  27. size="26rpx">
  28. </uv-icon>
  29. </view>
  30. </view>
  31. <view class="">
  32. 9
  33. <view class="icon">
  34. <uv-icon
  35. name="arrow-down"
  36. size="26rpx">
  37. </uv-icon>
  38. </view>
  39. </view>
  40. <view class="">
  41. 9
  42. <view class="icon">
  43. <uv-icon
  44. name="arrow-down"
  45. size="26rpx">
  46. </uv-icon>
  47. </view>
  48. </view>
  49. </view>
  50. <!-- 预约日期 -->
  51. <view class="title">
  52. 预约日期
  53. </view>
  54. <view class="line">
  55. <view class="">
  56. 08:00
  57. <view class="icon">
  58. <uv-icon
  59. name="arrow-down"
  60. size="26rpx">
  61. </uv-icon>
  62. </view>
  63. </view>
  64. <view class="">
  65. 14:00
  66. <view class="icon">
  67. <uv-icon
  68. name="arrow-down"
  69. size="26rpx">
  70. </uv-icon>
  71. </view>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. <view class="box">
  77. <view class="form-input">
  78. <view class="title">
  79. 游客信息
  80. </view>
  81. <view class="input">
  82. <view class="label">
  83. </view>
  84. <input type="text" />
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </template>
  90. <script>
  91. export default {
  92. data() {
  93. return {
  94. }
  95. },
  96. methods: {
  97. }
  98. }
  99. </script>
  100. <style scoped lang="scss">
  101. .page{
  102. .box{
  103. border-radius: 20rpx;
  104. margin: 20rpx;
  105. background-color: #fff;
  106. box-shadow: 0 0 16rpx 6rpx #00000011;
  107. .info{
  108. padding: 40rpx;
  109. border-bottom: 1rpx dashed #000;
  110. .title{
  111. font-size: 34rpx;
  112. font-weight: 900;
  113. padding-bottom: 20rpx;
  114. }
  115. .tips{
  116. font-size: 26rpx;
  117. color: #666666;
  118. padding: 10rpx 0;
  119. }
  120. }
  121. .form-time{
  122. padding: 40rpx;
  123. .title{
  124. font-weight: 900;
  125. padding-bottom: 20rpx;
  126. margin-top: 10rpx;
  127. }
  128. .line{
  129. display: flex;
  130. align-items: center;
  131. >view{
  132. border: 1rpx solid #333;
  133. padding: 6rpx 20rpx;
  134. margin: 10rpx;
  135. border-radius: 10rpx;
  136. font-size: 26rpx;
  137. display: flex;
  138. align-items: center;
  139. justify-content: center;
  140. .icon{
  141. padding: 0 10rpx;
  142. }
  143. }
  144. }
  145. }
  146. .form-input{
  147. padding: 40rpx;
  148. }
  149. }
  150. }
  151. </style>