second.wxml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <!--StepPage/pages/second/second.wxml-->
  2. <van-overlay show="{{show}}" z-index='999'>
  3. <view class="show_box">
  4. <view class="show_title"> <van-search style="width: 85%;" value="{{ searchValue }}" placeholder="请输入搜索关键词" bind:search="onSearch"
  5. />
  6. <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancel">取消</view>
  7. </view>
  8. <scroll-view style="height: 88%;" scroll-y="true">
  9. <view wx:for="{{searchList}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChoose">
  10. {{item.title}}
  11. </view>
  12. </scroll-view>
  13. </view>
  14. </van-overlay>
  15. <van-overlay show="{{b_show}}" z-index='999'>
  16. <view class="show_box">
  17. <view class="show_title"> <van-search style="width: 85%;" value="{{ searchBvalue }}" placeholder="请输入搜索关键词" bind:search="onSearchBusiness"
  18. />
  19. <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelFile">取消</view>
  20. </view>
  21. <scroll-view style="height: 88%;" scroll-y="true">
  22. <view wx:for="{{searchBList}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseFile">
  23. {{item.title}}
  24. </view>
  25. </scroll-view>
  26. </view>
  27. </van-overlay>
  28. <van-overlay show="{{s_show}}" z-index='999'>
  29. <view class="show_box">
  30. <view class="show_title"> <van-search style="width: 85%;" value="{{ searchSvalue }}" placeholder="请输入搜索关键词" bind:search="onSearchSpecial"
  31. />
  32. <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelSpecial">取消</view>
  33. </view>
  34. <scroll-view style="height: 88%;" scroll-y="true">
  35. <view wx:for="{{searchSList}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseSpecial">
  36. {{item.title}}
  37. </view>
  38. </scroll-view>
  39. </view>
  40. </van-overlay>
  41. <image src="../../../images/head.png" style="width:100%;height: 250rpx;z-index:-1"></image>
  42. <view class="title">1.选择产品类型</view>
  43. <van-cell-group>
  44. <van-field
  45. label='施工产品类型'
  46. value="{{ title }}"
  47. placeholder="请选择施工产品类型"
  48. required
  49. readonly
  50. use-button-slot
  51. >
  52. <van-button wx:if="{{set_status!=='is_detail'}}" slot="button" size="small" type="primary" bindtap="onChoose">
  53. 选择
  54. </van-button>
  55. </van-field>
  56. <van-field
  57. label='业务类型'
  58. value="{{ b_title }}"
  59. placeholder="请选择业务类型"
  60. required
  61. readonly
  62. use-button-slot
  63. >
  64. <van-button wx:if="{{set_status!=='is_detail'}}" slot="button" size="small" type="primary" bindtap="onChooseBusiness">
  65. 选择
  66. </van-button>
  67. </van-field>
  68. <van-field
  69. label='特殊情况'
  70. value="{{ s_title }}"
  71. placeholder="请选择特殊情况"
  72. readonly
  73. use-button-slot
  74. >
  75. <van-button wx:if="{{set_status!=='is_detail'}}" slot="button" size="small" type="primary" bindtap="onChooseSpecial">
  76. 选择
  77. </van-button>
  78. </van-field>
  79. <view style="margin:10rpx">内饰检查:</view>
  80. </van-cell-group>
  81. <van-radio-group value="{{ inside }}" disabled="{{set_status=='is_detail'}}" bind:change="onChangeInside">
  82. <van-cell-group>
  83. <van-cell title="完好" clickable data-name="1" bind:click="onClickInside">
  84. <van-radio slot="right-icon" name="1" />
  85. </van-cell>
  86. <van-cell title="划痕" clickable data-name="2" bind:click="onClickInside">
  87. <van-radio slot="right-icon" name="2" />
  88. </van-cell>
  89. </van-cell-group>
  90. </van-radio-group>
  91. <view style="margin:10rpx">车表检查:</view>
  92. <van-radio-group value="{{ surface }}" disabled="{{set_status=='is_detail'}}" bind:change="onChangeSurface">
  93. <van-cell-group>
  94. <van-cell title="完好" clickable data-name="1" bind:click="onClickSurface">
  95. <van-radio slot="right-icon" name="1" />
  96. </van-cell>
  97. <van-cell title="划痕" clickable data-name="2" bind:click="onClickSurface">
  98. <van-radio slot="right-icon" name="2" />
  99. </van-cell>
  100. </van-cell-group>
  101. </van-radio-group>
  102. <view class="btn">
  103. <van-button color="linear-gradient(to top, #626365, #ffffff)" custom-class="btn_item" bindtap="handleReturn"><text class="font_item">上一步</text></van-button>
  104. <van-button disabled='{{title&&b_title?false:true}}' color="linear-gradient(to top, #626365, #ffffff)"
  105. custom-class="btn_item" bindtap="handleNext"> <text class="font_item">下一步</text></van-button>
  106. </view>