123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <!--StepPage/pages/second/second.wxml-->
- <van-overlay show="{{show}}" z-index='999'>
- <view class="show_box">
- <view class="show_title"> <van-search style="width: 85%;" value="{{ searchValue }}" placeholder="请输入搜索关键词" bind:search="onSearch"
- />
- <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancel">取消</view>
- </view>
-
- <scroll-view style="height: 88%;" scroll-y="true">
- <view wx:for="{{searchList}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChoose">
- {{item.title}}
- </view>
- </scroll-view>
- </view>
- </van-overlay>
- <van-overlay show="{{b_show}}" z-index='999'>
- <view class="show_box">
- <view class="show_title"> <van-search style="width: 85%;" value="{{ searchBvalue }}" placeholder="请输入搜索关键词" bind:search="onSearchBusiness"
- />
- <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelFile">取消</view>
- </view>
-
- <scroll-view style="height: 88%;" scroll-y="true">
- <view wx:for="{{searchBList}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseFile">
- {{item.title}}
- </view>
- </scroll-view>
- </view>
- </van-overlay>
- <van-overlay show="{{s_show}}" z-index='999'>
- <view class="show_box">
- <view class="show_title"> <van-search style="width: 85%;" value="{{ searchSvalue }}" placeholder="请输入搜索关键词" bind:search="onSearchSpecial"
- />
- <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelSpecial">取消</view>
- </view>
- <scroll-view style="height: 88%;" scroll-y="true">
- <view wx:for="{{searchSList}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseSpecial">
- {{item.title}}
- </view>
- </scroll-view>
- </view>
- </van-overlay>
- <image src="../../../images/head.png" style="width:100%;height: 250rpx;z-index:-1"></image>
- <view class="title">1.选择产品类型</view>
- <van-cell-group>
- <van-field
- label='施工产品类型'
- value="{{ title }}"
- placeholder="请选择施工产品类型"
- required
- readonly
- use-button-slot
- >
- <van-button wx:if="{{set_status!=='is_detail'}}" slot="button" size="small" type="primary" bindtap="onChoose">
- 选择
- </van-button>
- </van-field>
- <van-field
- label='业务类型'
- value="{{ b_title }}"
- placeholder="请选择业务类型"
- required
- readonly
- use-button-slot
- >
- <van-button wx:if="{{set_status!=='is_detail'}}" slot="button" size="small" type="primary" bindtap="onChooseBusiness">
- 选择
- </van-button>
- </van-field>
- <van-field
- label='特殊情况'
- value="{{ s_title }}"
- placeholder="请选择特殊情况"
- readonly
- use-button-slot
- >
- <van-button wx:if="{{set_status!=='is_detail'}}" slot="button" size="small" type="primary" bindtap="onChooseSpecial">
- 选择
- </van-button>
- </van-field>
- <view style="margin:10rpx">内饰检查:</view>
- </van-cell-group>
- <van-radio-group value="{{ inside }}" disabled="{{set_status=='is_detail'}}" bind:change="onChangeInside">
- <van-cell-group>
- <van-cell title="完好" clickable data-name="1" bind:click="onClickInside">
- <van-radio slot="right-icon" name="1" />
- </van-cell>
- <van-cell title="划痕" clickable data-name="2" bind:click="onClickInside">
- <van-radio slot="right-icon" name="2" />
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- <view style="margin:10rpx">车表检查:</view>
- <van-radio-group value="{{ surface }}" disabled="{{set_status=='is_detail'}}" bind:change="onChangeSurface">
- <van-cell-group>
- <van-cell title="完好" clickable data-name="1" bind:click="onClickSurface">
- <van-radio slot="right-icon" name="1" />
- </van-cell>
- <van-cell title="划痕" clickable data-name="2" bind:click="onClickSurface">
- <van-radio slot="right-icon" name="2" />
- </van-cell>
- </van-cell-group>
- </van-radio-group>
- <view class="btn">
- <van-button color="linear-gradient(to top, #626365, #ffffff)" custom-class="btn_item" bindtap="handleReturn"><text class="font_item">上一步</text></van-button>
- <van-button disabled='{{title&&b_title?false:true}}' color="linear-gradient(to top, #626365, #ffffff)"
- custom-class="btn_item" bindtap="handleNext"> <text class="font_item">下一步</text></van-button>
- </view>
|