| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!--StepPage/pages/first/first.wxml-->
- <van-dialog id="van-dialog" />
- <van-dialog
- use-slot
- title="原因"
- show="{{ show_m }}"
- show-cancel-button
- bind:close="onClose"
- bind:confirm="onSure"
- >
- <van-cell-group>
- <van-field
- value="{{ oa_remark }}"
- placeholder="请输入"
- clearable
- type='textarea'
- autosize='true'
- bind:change="handleChangeRemark"
- >
- </van-field>
- </van-cell-group>
- </van-dialog>
- <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="{{show_c}}" z-index='999'>
- <view class="show_box">
- <view class="show_title"> <van-search style="width: 85%;" value="{{ searchValueC }}" placeholder="请输入搜索关键词" bind:search="onSearchC"
- />
- <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelC">取消</view>
- </view>
- <scroll-view style="height: 88%;" scroll-y="true">
- <view wx:for="{{searchListC}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseC">
- {{item.title}}
- </view>
- </scroll-view>
- </view>
- </van-overlay>
- <image src="../../../images/head.png" style="width:100%;height: 250rpx;z-index:-1"></image>
- <view wx:if="{{set_status=='is_detail'&&is_check>0?true:false}}">
- <view wx:if="{{status<=0}}" style="text-align: right;padding: 0 15rpx;"><van-button type='primary' bind:tap="handleCheck">审核</van-button></view>
- <view wx:if='{{status==1&&oa_state==1}}'>
- <van-button style="margin-right: 10px" type="priamry" bind:tap="handlePassModal" data-item="1">通过</van-button>
- <van-button style="margin-right: 10px" type="warning" bind:tap="handlePassModal" data-item="0">驳回</van-button>
- </view>
- </view>
- <view class="title">{{type==2?'选择仓库':'选择门店'}}</view>
- <view class="item_content">
- <van-cell-group style="width: 100%;">
- <van-field
- wx:if="{{type==2}}"
- label='仓库'
- title-width='4.8rem'
- value="{{ title_c }}"
- placeholder="请选择仓库"
- clearable
- required
- readonly
- use-button-slot
- >
- <van-button wx:if="{{set_status!=='is_detail'}}" slot="button" size="small" type="primary" bindtap="handleSearchC">
- 选择
- </van-button>
- </van-field>
- <van-field
- wx:else
- label='4s门店'
- title-width='4.8rem'
- value="{{ title }}"
- placeholder="请选择4s门店"
- clearable
- required
- readonly
- use-button-slot
- >
- <van-button wx:if="{{set_status!=='is_detail'}}" slot="button" size="small" type="primary" bindtap="handleSearch">
- 选择
- </van-button>
- </van-field>
- </van-cell-group>
- </view>
- <view class="btn">
- <van-button color="linear-gradient(to top, #626365, #ffffff)" class="btn_item" bindtap="handleReturn">
- <text class="font_item">上一步</text>
- </van-button>
- <van-button disabled='{{title||title_c?false:true}}' color="linear-gradient(to top, #626365, #ffffff)" class="btn_item" bindtap="handleNext"> <text class="font_item">下一步</text></van-button>
- </view>
|