12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!--index.wxml-->
  2. <view class="MainPage">
  3. <view class="list">
  4. <view class="flex-h">
  5. <text><text>*</text>具体楼盘:</text>
  6. <view class="flex-item"></view>
  7. <text>{{BuildingName}}</text>
  8. <image mode="widthFix" src="/assets/images/icon12.png" style="width: 22rpx;"></image>
  9. </view>
  10. <view class="flex-h">
  11. <text><text>*</text>选择预约时间:</text>
  12. <view class="flex-item"></view>
  13. <text bindtap="SelectAppointmentDate">{{AppointmentDate === '' ? '请选择预约时间' : AppointmentDate}}</text>
  14. <image mode="widthFix" src="/assets/images/icon12.png" style="width: 22rpx;"></image>
  15. </view>
  16. </view>
  17. <view class="list">
  18. <view class="flex-h">
  19. <text><text>*</text>姓名:</text>
  20. <view class="flex-item">
  21. <input placeholder="请输入姓名" data-name="Name" bindinput="FormInput" />
  22. </view>
  23. </view>
  24. <view class="flex-h">
  25. <text><text>*</text>手机号:</text>
  26. <view class="flex-item">
  27. <input type="number" placeholder="请输入手机号" data-name="PhoneNum" bindinput="FormInput" />
  28. </view>
  29. </view>
  30. <view class="flex-h">
  31. <text>备注:</text>
  32. <view class="flex-item">
  33. <input placeholder="请输入备注信息" data-name="Remark" bindinput="FormInput" />
  34. </view>
  35. </view>
  36. </view>
  37. <text class="remark">预约成功以后,专业置业顾问将在24小时内与您联系</text>
  38. <view class="btn" bindtap="MakeAnAppointment">
  39. <text>预约</text>
  40. </view>
  41. <view class="popup" hidden="{{!TriggerSelectAppointmentDate}}">
  42. <view>
  43. <van-datetime-picker min-date="{{MinDate}}" type="datetime" bind:cancel="SelectAppointmentDateCancel" bind:confirm="SelectAppointmentDateConfirm" />
  44. </view>
  45. </view>
  46. </view>