| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <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_out}}" z-index='999'>
- <view class="show_box">
- <view class="show_title"> <van-search style="width: 85%;" value="{{ searchValue_out }}" placeholder="请输入搜索关键词" bind:search="onSearchOut"
- />
- <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelOut">取消</view>
- </view>
- <scroll-view style="height: 88%;" scroll-y="true">
- <view wx:for="{{searchListOut}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseOut">
- {{item.title}}
- </view>
- </scroll-view>
- </view>
- </van-overlay>
- <van-overlay show="{{show_in}}" z-index='999'>
- <view class="show_box">
- <view class="show_title"> <van-search style="width: 85%;" value="{{ searchValue_in }}" placeholder="请输入搜索关键词" bind:search="onSearchIn"
- />
- <view style="margin-right: 40rpx;color: rgb(146, 171, 218);" bindtap="handleCancelIn">取消</view>
- </view>
- <scroll-view style="height: 88%;" scroll-y="true">
- <view wx:for="{{searchListIn}}" wx:key="index" data-item="{{item}}" data-index="{{index}}" class="show_item" bindtap="handleChooseIn">
- {{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">调拨单</view>
- <view class="item_content">
- <van-cell-group style="width: 100%;">
- <van-field
- label='所属集团'
- title-width='4.8rem'
- value="{{ company_name }}"
- placeholder="请选择"
- clearable
- required
- readonly
- use-button-slot
- >
- <van-button wx:if="{{set_status!='is_detail'}}" slot="button" size="small" type="primary" bindtap='handleClick'>
- 选择
- </van-button>
- </van-field>
- <van-field
- label='调出仓库'
- title-width='4.8rem'
- value="{{ out_title }}"
- placeholder="请选择"
- clearable
- required
- readonly
- use-button-slot
- >
- <van-button slot="button" size="small" type="primary" bindtap='handleClickOut' wx:if="{{company_id&&set_status!='is_detail'}}">
- 选择
- </van-button>
- </van-field>
- <van-field
- label='调入仓库'
- title-width='4.8rem'
- value="{{ in_title }}"
- placeholder="请选择"
- clearable
- readonly
- required
- use-button-slot
- >
- <van-button slot="button" size="small" type="primary" bindtap='handleClickIn' wx:if="{{company_id&&set_status!='is_detail'}}">
- 选择
- </van-button>
- </van-field>
- <van-field
- label='物流信息'
- title-width='4.8rem'
- value="{{ mark }}"
- placeholder="请输入"
- clearable
- bind:blur='handleChangeremark'
- >
- </van-field>
- <view wx:key="index" class="image_item">
- <image style="width: 100%;height: 100%;" src=""></image>
- </view>
- </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 color="linear-gradient(to top, #626365, #ffffff)" class="btn_item" bindtap="handleNext" disabled='{{(company_id&&to_storehouse_id&&from_storehouse_id)?false:true}}'> <text class="font_item">下一步</text></van-button>
- </view>
|