123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <view class="page">
- <view class="group1">
- <view class="group4">
- <view class="bd1">
- <text lines="1" class="word2">{{selectInfo.title}}</text>
- <view class="bd2">
- <view class="section3-0" >
- <view class="main1-0">
- <text lines="1" class="word3-0">{{selectInfo.door_Collect_num}}</text>
- <text lines="1" class="word4-0">上门待收</text>
- </view>
- </view>
- <view class="section3-1">
- <view class="main1-1">
- <text lines="1" class="word3-1">{{selectInfo.door_stay_num}}</text>
- <text lines="1" class="word4-1">上门待送</text>
- </view>
- </view>
- <view class="section3-2">
- <view class="main1-2">
- <text lines="1" class="word3-2">{{selectInfo.collect_num}}</text>
- <text lines="1" class="word4-2">已揽收</text>
- </view>
- </view>
- <view class="section3-3">
- <view class="main1-3">
- <text lines="1" class="word3-3">{{selectInfo.stay_num}}</text>
- <text lines="1" class="word4-3">待送回</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="group5">
- <view class="section4" wx:for="{{head_clas}}" wx:key="index">
- <view class="wrap1" bindtap="click" data-class="{{item.data_class}}">
- <text lines="1" class="{{class==item.data_class?'word5':'info3'}}">{{item.title}}</text>
- <view class="group6" wx:if="{{class==item.data_class}}"></view>
- </view>
- </view>
- </view>
- <view class="group7">
- <view class="group8">
- <view class="bd3">
- <input type="text" class="word7" value="{{inpval}}" bindinput="serach" placeholder="按订单号、手机号搜索"></input>
- </view>
- <button bindtap="getData" class="bd4">
- <text lines="1" class="txt2">搜索</text>
- </button>
- </view>
- </view>
- <view class="group9">
- <view wx:for="{{selectInfo[class]}}" class="section8-0">
- <view class="main2-0">
- <view class="box1-0">
- <text lines="1" class="word8-0">订单编号:{{item.order_no}}</text>
- <text lines="1" class="word9-0">{{item.status}}</text>
- </view>
- <view class="box2-0">
- <view class="box3-0">
- <view wx:for="{{item.order_info}}" wx:key="index" wx:for-item="val" class="box4-0">
- <view class="layer1-0">
- <image src="{{val.thumb==''?'/image/home/pic.png':val.thumb}}"></image>
- </view>
- <view class="layer2-0">
- <text lines="1" class="txt3-0">x{{val.stock}}件</text>
- </view>
- </view>
- </view>
- </view>
- <view class="box7-0">
- <text lines="1" decode="true" class="info5-0">{{dat}}:{{item.created_at}}</text>
- <text lines="1" class="word11-0">共{{item.count}}件</text>
- </view>
- <view class="box8-0"></view>
- <view wx:if="{{class!='collect_list' && class!='stay_list'}}">
- <text lines="1" class="info6-0">联系信息</text>
- <text lines="1" decode="true" class="word12-0">姓名:{{item.wx_nickname}} | 地址:{{item.address}}</text>
- </view>
- <view class="box9-0">
- <text lines="1" bindtap="call" data-phone="{{item.phone}}" class="word13-0">联系用户</text>
- </view>
- </view>
- </view>
- </view>
- <view class="group10" wx:if="{{selectInfo.unit>0}}">
- <view class="section9">
- <view bindtap="operate" data-type="0" class="outer1">
- <text lines="1" class="word15">揽收</text>
- </view>
- <view bindtap="operate" data-type="1" class="outer2">
- <text lines="1" class="word15">送回</text>
- </view>
- </view>
- </view>
- </view>
- <view class="group12"></view>
- </view>
- <van-popup show="{{ show }}" bind:close="onClose" custom-style="height: 40%;">
- <view class="section10">
- <view class="layer1">
- <text lines="1" class="txt5">输入{{type==0?'存衣码':'取件码'}}</text>
- <image src="https://lanhu.oss-cn-beijing.aliyuncs.com/SketchPngd2c9be634e0cc7e1ddf11c942d606b7211edf0ab2cec8c9c33a7b0d12b02c3f0" class="icon2"></image>
- </view>
- <view class="layer2">
- <text lines="1" class="txt6">下方输入用户提供的六位数{{type==0?'存衣码':'取件码'}}</text>
- </view>
- <view class="layer3">
- <view class="pic2">
- <view class="input">{{one}}</view>
- <view class="input">{{two}}</view>
- <view class="input">{{three}}</view>
- <view class="input">{{four}}</view>
- <view class="input">{{five}}</view>
- <view class="input">{{six}}</view>
- <input auto-focus="{{focus}}" type="number" maxlength="6" model:value="{{inputValue}}" bindinput="finish"></input>
- </view>
- </view>
- </view>
- </van-popup>
|