123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- <view class="page">
- <view class="section1">
- <view class="group3">
- <view class="mod3">
- <view class="box2">
- <text lines="1" class="txt2">订单编号:</text>
- <!-- <text lines="1" class="word2">封签号:无</text> -->
- <text lines="1" class="word2">{{order_no}}</text>
- </view>
- <view class="box3">
- <view class="bd1">
- <text lines="1" class="word4">#{{pylon_no}}</text>
- <text lines="1" class="word5">挂架号</text>
- </view>
- </view>
- <view class="box4">
- <view class="section3">
- <text lines="1" class="word6">{{hand_up_count}}/{{need_hand_up_count}}</text>
- <text lines="1" class="word7">已挂/应挂</text>
- </view>
- </view>
- </view>
- </view>
- <view class="group4">
- <view class="box5">
- <image src="/image/icon/message.png" class="img1"></image>
- <text lines="1" class="info3">此订单衣物上挂在多个挂架,请注意查看</text>
- </view>
- </view>
- <view wx:for="{{data.no_hand_ups}}" wx:key="index">
- <text lines="1" class="word8">未上挂,不可打包衣物({{data.no_hand_ups.length}})</text>
- <view class="group5">
- <view class="layer1">
- <text lines="1" class="word9">水洗码:{{item.wash_code}}</text>
- </view>
- <!-- <view class="layer2">
- <text lines="1" class="txt3">封签号:12-345678</text>
- </view> -->
- <view class="layer3">
- <text lines="1" class="txt4">{{item.cate_name}}</text>
- <text lines="1" class="info4">颜色:</text>
- <!-- <view class="block1"></view> -->
- <text lines="1" class="word10">{{item.sorting_report_desc.color}}</text>
- </view>
- </view>
- </view>
- <view wx:for="{{data.new_hand_ups}}" wx:key="index">
- <text lines="1" decode="true" class="txt5">#{{index}}号挂架 可打包衣物({{data.new_length}})</text>
- <view class="group6" wx:for="{{item}}" wx:for-item="va" wx:key="index">
- <view class="section4">
- <text lines="1" class="word11">水洗码:{{va.wash_code}}</text>
- <text lines="1" class="info5">{{va.scanning?'已扫描':'未扫描'}}</text>
- </view>
- <!-- <view class="layer2">
- <text lines="1" class="txt3">封签号:12-345678</text>
- </view> -->
- <view class="layer3">
- <text lines="1" class="txt4">{{va.cate_name}}</text>
- <text lines="1" class="info4">颜色:</text>
- <!-- <view class="block1"></view> -->
- <text lines="1" class="word10">{{va.sorting_report_desc.color}}</text>
- </view>
- </view>
- </view>
-
- </view>
- <view class="section7">
- <view class="main1">
- <view class="layer5">
- <view class="outer1" bindtap="show" data-id="1">
- <view class="mod10">
- <image src="/image/build/scan.png"></image>
- </view>
- <text lines="1" class="txt11">扫描确认衣物</text>
- </view>
- <view class="outer2">
- <view class="group9"></view>
- </view>
- </view>
- <view class="layer6" bindtap="isshow">
- <text lines="1" class="txt12">打包已扫描衣物</text>
- </view>
- </view>
- </view>
- </view>
- <van-popup show="{{ show }}" position="bottom" custom-style="height: 35%;" bind:close="onClose">
- <view class="wrap-1">
- <view class="mod-1">
- <view class="bd-1">
- <view class="section-2">
- <input type="text" style="width: 100%;" value="{{inpuval}}" bindinput="bindinput" placeholder="{{placeholder}}"></input>
- <!-- <text lines="1" class="info-1">扫描或人工输入封签号</text> -->
- <image src="/image/build/scan.png" class="label-1" bindtap="getScancode"></image>
- </view>
- </view>
- <view class="bd-2">
- <button bindtap="onClose" class="mod-2" bindtap="onClose_del">
- <text lines="1" class="word-1">取消</text>
- </button>
- <button bindtap="onClick" class="mod-3" data-butt="{{butt}}">
- <text lines="1" class="info-2">{{butt}}</text>
- </button>
- </view>
- </view>
- </view>
- </van-popup>
- <van-popup show="{{ isshow }}" position="bottom" custom-style="height: 50%;" bind:close="Close">
- <view class="layer11">
- <van-radio-group value="{{ radio }}" bind:change="onChange">
- <view class="bd11">
- <view class="group11">
- <view class="mod11">
- <van-radio name="1">
- <view class="main11">
- <text lines="1" class="info11">使用封签打包</text>
- <text lines="1" class="info21">使用封签号进行打包关联,适用于无打印条件</text>
- </view>
- </van-radio>
- </view>
- </view>
- <view class="group11">
- <view class="mod11">
- <van-radio name="2">
- <view class="main11">
- <text lines="1" class="info11">使用打印模式<text class="word31">使用此模式需连接打印机</text></text>
- <text lines="1" class="info21">系统自动生成物流单号,并打印物流面单作为凭证</text>
- </view>
- </van-radio>
- </view>
- </view>
- <view class="group41">
- <button bindtap="Close" class="bd21">
- <text lines="1" class="word11">取消</text>
- </button>
- <button bindtap="show" class="bd31" data-id="2">
- <text lines="1" class="word21">确定</text>
- </button>
- </view>
- </view>
- </van-radio-group>
- </view>
- </van-popup>
|