index.wxml 763 B

1234567891011121314151617181920212223
  1. <view>
  2. <view class="inputView">
  3. <label class="inputLabel">采购合同号:</label>
  4. <input class="inputText" focus placeholder="请输入采购合同号" bindinput="bindSScCodeInput" />
  5. </view>
  6. <view class="inputView">
  7. <label class="inputLabel">我司货号:</label>
  8. <input class="inputText" placeholder="请输入我司货号" bindinput="bindpCodeInput" />
  9. </view>
  10. <view class="inputView">
  11. <label class="inputLabel">抽箱状态:</label>
  12. <picker bindchange="bindPickerChange" value="{{warehoseIndex}}" range="{{warehoseArray}}" range-key="name">
  13. <view class="picker">
  14. {{warehoseArray[warehoseIndex].name}}
  15. </view>
  16. </picker>
  17. </view>
  18. <view class="btnView">
  19. <button type="primary" bindtap="search">搜索</button>
  20. </view>
  21. </view>