index.wxml 443 B

1234567891011121314
  1. <view>
  2. <view class="inputView">
  3. <label class="inputLabel">PO号:</label>
  4. <input class="inputText" focus placeholder="请输入PO号" bindinput="bindpoCodeInput" />
  5. </view>
  6. <view class="inputView">
  7. <label class="inputLabel">SC号:</label>
  8. <input class="inputText" placeholder="请输入SC号" bindinput="bindscCodeInput" />
  9. </view>
  10. <view class="btnView">
  11. <button type="primary" bindtap="search">搜索</button>
  12. </view>
  13. </view>