index.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!--pages/tabber/builds/index.wxml-->
  2. <view class="contioner">
  3. <view class="input flex ju-b">
  4. <input type="text" value="{{intval}}" placeholder="输入订单号或水洗码" bindconfirm="binsubmit" bindinput="bindinput"/>
  5. <image class="icon" src="/image/build/scan.png" bindtap="getScancode"></image>
  6. </view>
  7. </view>
  8. <view class="contioner m-bottom-25">
  9. <view class="menu flex ju-b">
  10. <view class="box flex ju-c">
  11. <view class="tit">{{data.is_pack}}</view>
  12. <view class="tips">可打包挂架</view>
  13. </view>
  14. <view class="box flex ju-c">
  15. <view class="tit">{{data.hand_count}}</view>
  16. <view class="tips">上挂件数</view>
  17. </view>
  18. <view class="box flex ju-c">
  19. <view class="tit">{{data.hand_up_count}}</view>
  20. <view class="tips">待上挂件数</view>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="contioner flex ju-b b-bottom">
  25. <view class="le">挂架列表</view>
  26. <view class="lr">挂架数 {{data.hans.length}}</view>
  27. </view>
  28. <view class="contioner flex ju-b">
  29. <view class="list flex ">
  30. <view class="item flex ju-c" wx:for="{{data.hans}}" wx:key="index">
  31. <view bindtap="gourl" data-id="{{item.hand_no}}" data-sta="{{item.hand_count}}">
  32. <view class="top">{{item.hand_no}}</view>
  33. </view>
  34. <view class="foot m-top-20 {{item.hand_count == 0 ? '': (item.limit_count == item.hand_count ? 'green' : 'blue')}}">{{item.hand_count}}/{{item.limit_count}}</view>
  35. </view>
  36. </view>
  37. </view>