1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!--pages/tabber/builds/index.wxml-->
- <view class="contioner">
- <view class="input flex ju-b">
- <input type="text" value="{{intval}}" placeholder="输入订单号或水洗码" bindconfirm="binsubmit" bindinput="bindinput"/>
- <image class="icon" src="/image/build/scan.png" bindtap="getScancode"></image>
- </view>
- </view>
- <view class="contioner m-bottom-25">
- <view class="menu flex ju-b">
- <view class="box flex ju-c">
- <view class="tit">{{data.is_pack}}</view>
- <view class="tips">可打包挂架</view>
- </view>
- <view class="box flex ju-c">
- <view class="tit">{{data.hand_count}}</view>
- <view class="tips">上挂件数</view>
- </view>
- <view class="box flex ju-c">
- <view class="tit">{{data.hand_up_count}}</view>
- <view class="tips">待上挂件数</view>
- </view>
- </view>
- </view>
- <view class="contioner flex ju-b b-bottom">
- <view class="le">挂架列表</view>
- <view class="lr">挂架数 {{data.hans.length}}</view>
- </view>
- <view class="contioner flex ju-b">
- <view class="list flex ">
-
- <view class="item flex ju-c" wx:for="{{data.hans}}" wx:key="index">
- <view bindtap="gourl" data-id="{{item.hand_no}}" data-sta="{{item.hand_count}}">
- <view class="top">{{item.hand_no}}</view>
- </view>
- <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>
- </view>
-
- </view>
- </view>
|