百富门答题小程序
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.

121 lines
3.3 KiB

  1. <template>
  2. <view class="home">
  3. <view class="content" style="padding-top: 15vh;">
  4. <view class="flex-col mt-40" style="width: 90vw; padding: 20rpx 0; gap: 10rpx; border-radius: 12rpx; border: 2rpx solid #07c060;">
  5. <span style="font-size: 28rpx;">请选择您方便的时间</span>
  6. <span style="font-size: 28rpx;">我们将根据您的日程为您安排上门威士忌品鉴服务</span>
  7. <span style="font-size: 28rpx;">确保您能在舒适的环境中尽享专属体验</span>
  8. </view>
  9. <span class="font-bold" style="margin-top: 5vh;">预约信息</span>
  10. <view class="" style="width: 90vw;">
  11. <view class="flex-sb mt-40">
  12. <view class="date">
  13. {{year}}
  14. <img src="../static/info/下拉.png" style="width: 25rpx; height: 25rpx;"/>
  15. </view>
  16. <view class="date">
  17. {{date}}
  18. <img src="../static/info/下拉.png" style="width: 25rpx; height: 25rpx;"/>
  19. </view>
  20. <view class="date">
  21. {{time}}
  22. <img src="../static/info/下拉.png" style="width: 25rpx; height: 25rpx;"/>
  23. </view>
  24. </view>
  25. <view class="flex-start-col mt-40">
  26. <view class="flex-center" style="align-items: flex-end;">
  27. <view class="flex-start-col" style="gap: 10rpx;">
  28. <span>姓名:</span>
  29. <input v-model="username" type="text" class="input" style="width: 20vw;"></input>
  30. </view>
  31. <span style="margin-left: 20rpx; color: #dddddc; font-size: 26rpx;">(最开始填写的直接导入)</span>
  32. </view>
  33. <view class="flex-center" style="align-items: flex-end;">
  34. <view class="flex-start-col" style="gap: 10rpx;">
  35. <span>联系电话:</span>
  36. <input v-model="phone" type="tel" class="input"></input>
  37. </view>
  38. <span style="margin-left: 20rpx; color: #dddddc; font-size: 26rpx;">(最开始填写的直接导入)</span>
  39. </view>
  40. <view class="flex-center">
  41. <view class="flex-start-col" style="gap: 10rpx; width: 80vw;">
  42. <span>详细地址:</span>
  43. <input v-model="address" type="text" class="input" style="width: 100%; height: 60rpx;"></input>
  44. </view>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="flex-col query" style="gap: 0rpx;">
  49. <view class="flex-center" style="gap: 30rpx;">
  50. <view class="btn2" style="padding: 16rpx 80rpx;" @click="pre">
  51. 返回
  52. </view>
  53. <view class="btn2" style="padding: 16rpx 80rpx;" @click="next">
  54. 确定 / 提交
  55. </view>
  56. </view>
  57. <text class="second-color">欢快无限饮&nbsp;&nbsp;饮酒有限度</text>
  58. </view>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. export default {
  64. data() {
  65. return {
  66. year: '2024年',
  67. date: '9月20日',
  68. time: '08:00',
  69. firstName: '张',
  70. lastName: '里于',
  71. gender: '',
  72. phone: '',
  73. message: ''
  74. }
  75. },
  76. methods: {
  77. next() {
  78. uni.navigateTo({
  79. url: '/pages_order/info/start'
  80. })
  81. },
  82. pre(){
  83. uni.navigateBack({
  84. delta:1
  85. })
  86. }
  87. },
  88. }
  89. </script>
  90. <style lang="scss" scoped>
  91. .query {
  92. position: relative;
  93. bottom: -5vh;
  94. }
  95. .date {
  96. border: 2rpx solid $uni-color;
  97. padding: 14rpx 30rpx;
  98. border-radius: 12rpx;
  99. }
  100. .main-color{
  101. flex-wrap: nowrap;
  102. color: $uni-color;
  103. }
  104. .input{
  105. border: 2rpx solid #FD5100;
  106. border-radius: 10rpx;
  107. padding: 10rpx;
  108. }
  109. .area{
  110. border: 2rpx solid #FD5100;
  111. border-radius: 10rpx;
  112. padding: 10rpx;
  113. width: 100%;
  114. height: 120rpx;
  115. }
  116. </style>