check.wxml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <view class="page">
  2. <include src='../../components/_toast/_toast1'></include>
  3. <image src="http://dm.dhcarlife.com/core//image/store_21320/48e46fcfb76593a91572d64b337c7490b7e2d963.png"
  4. data-from="content" mode='widthFix' style="width:100%;"></image>
  5. <view class="section">
  6. <view class="input-container">
  7. <view class="input-border">
  8. <text class="label">姓名:</text>
  9. <input class="uni-input" bindinput="bindName" value='{{name}}' bind:=""/>
  10. </view>
  11. </view>
  12. <view class="input-container">
  13. <view class="input-border">
  14. <view class="label">电话:</view>
  15. <input class="uni-input"bindinput="bindPhone" value='{{phone}}' maxlength="11" type="number"/>
  16. </view>
  17. </view>
  18. <view class="input-container">
  19. <view class="input-border">
  20. <text class="label">车牌号:</text>
  21. <input class="uni-input" bindinput="bindLicense" value='{{license_number}}' />
  22. </view>
  23. </view>
  24. <view class="input-container">
  25. <view class="input-border">
  26. <text class="label">车辆型号:</text>
  27. <input class="uni-input" bindinput="bindModel" value="{{car_model}}"/>
  28. </view>
  29. </view>
  30. <view class="input-container">
  31. <view class="input-border">
  32. <picker class="picker-input" mode="time" value="{{appoint_time}}" start="09:00" end="17:00" bindchange="bindTimeChange">
  33. <view class="picker">
  34. <text class="label">预约时间:</text> {{appoint_time}}
  35. </view>
  36. </picker>
  37. </view>
  38. </view>
  39. <view class="section">
  40. <view class="input-container" style="margin:0;">
  41. <calendar
  42. config="{{calendarConfig}}"
  43. bind:afterTapDate="afterTapDate" />
  44. </view>
  45. <view class="input-container" style="margin:0;padding-top:80px">
  46. <button class="submit" bindtap="onSubmit">确定预约</button>
  47. </view>
  48. <view style="text-align: center;font-size:20rpx;padding:30px 0">*注:周一至周六,法定节假日除外可以预约</view>
  49. </view>
  50. </view>
  51. <app-navigation __alipay_mp_config='{{__alipay_mp_config}}' __device='{{__device}}' __platform='{{__platform}}' __user_info='{{__user_info}}' options='{{options}}' setnavi='{{setnavi}}' store='{{store}}'></app-navigation>
  52. <image src="http://dm.dhcarlife.com/core//image/store_21320/ca8117c513a1179864236c6a8eb16a3226ae5754.png"
  53. data-from="content" mode='widthFix' style="width:100%;"></image>
  54. </view>