1234567891011121314151617181920212223 |
- <view>
- <view class="inputView">
- <label class="inputLabel">采购合同号:</label>
- <input class="inputText" focus placeholder="请输入采购合同号" bindinput="bindSScCodeInput" />
- </view>
- <view class="inputView">
- <label class="inputLabel">我司货号:</label>
- <input class="inputText" placeholder="请输入我司货号" bindinput="bindpCodeInput" />
- </view>
- <view class="inputView">
- <label class="inputLabel">抽箱状态:</label>
- <picker bindchange="bindPickerChange" value="{{warehoseIndex}}" range="{{warehoseArray}}" range-key="name">
- <view class="picker">
- {{warehoseArray[warehoseIndex].name}}
- </view>
- </picker>
- </view>
- <view class="btnView">
- <button type="primary" bindtap="search">搜索</button>
- </view>
- </view>
|