12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <view class="page">
- <view class="block1">
- <view class="box3">
- <view class="wrap1">
- <view class="box4">
- <view class="outer1" bindtap="click">
- <text lines="1" class="info3">{{vtype}}</text>
- <icon class="label2 iconfont iconxiajiantou"></icon>
- </view>
- <view class="box4-2">
- <input type="text" name="serch" value="" bindinput="bindinput"></input>
- </view>
- </view>
- <button bindtap="serch" class="box5">
- <text lines="1" class="txt1">搜索</text>
- </button>
- </view>
- </view>
- <!-- <view class="box6">
- <view class="bd1">
- <view class="mod1">
- <text lines="1" class="word2">未取({{order_count}})</text>
- <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="label3"></image>
- </view>
- </view>
- <view class="bd2">
- <view class="main1">
- <view class="block2"></view>
- <text lines="1" class="word3">网点</text>
- <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="icon1"></image>
- </view>
- </view>
- <view class="bd3">
- <view class="section1">
- <view class="main2"></view>
- <text lines="1" class="info4">时间</text>
- <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="icon2"></image>
- </view>
- </view>
- </view> -->
-
- <view class="display-between header_bottom">
- <view bindtap="changestate">未取({{order_count}})</view>
- <view>
- <picker bindchange="shopschange" value="{{shopsind}}" range="{{shopslist}}" range-key="title">
- <view class="itemdisplay">
- <view class="font_maxw">{{shopsind==0?'网点':shopslist[shopsind].title}}</view>
- <image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="label3"></image>
- </view>
- </picker>
- </view>
- <!-- <view>时间<image src="https://636c-cloud1-7g2wlwzh596f43b6-1306306616.tcb.qcloud.la/ic_xiajiantou%402x.png?sign=f2ea45a48221502bb335335b4bb6486d&t=1645170754" class="label3"></image></view> -->
- </view>
- <view class="box7" wx:for="{{selectInfo}}" wx:key="index">
- <view class="outer2">
- <view class="group3">
- <text lines="1" class="word4">物流单号:{{item.logistics_no}}</text>
- <text lines="1" class="txt2">{{item.order_status}}</text>
- </view>
- <view class="group4"></view>
- <text lines="1" class="word5">目的地:{{item.title}}</text>
- <text lines="1" class="txt3">封签号:{{item.seal_no}}</text>
- <view class="group5">
- <view class="layer1">
- <view class="layer2">
- <view class="section2-0" wx:for="{{item.thumb_array}}" wx:key="index" wx-item="v">
- <image src="{{v.thumb?v.thumb:'/image/home/user.png'}}" class="img1-0"></image>
- <text lines="1" class="word6">{{v.title}}</text>
- </view>
- </view>
- </view>
- </view>
- <text lines="1" class="word7">订单类型:{{item.order_type}}</text>
- <text lines="1" class="info5">订单号:{{item.order_no}}</text>
- <view class="group6"></view>
- <view class="group7">
- <view class="layer4" bindtap="goto" data-id="{{item.id}}">
- <text lines="1" class="info6">运单详情</text>
- </view>
- <view class="layer5">
- <text lines="1" class="word8" bindtap="tel" data-phone="{{item.phone}}">联系用户</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <van-cell title="展示弹出层" is-link />
- <van-popup show="{{ show }}" position="bottom" custom-style="height: 30%;" bind:close="onClose">
- <van-picker show="{{ show }}" columns="{{ columns }}" bind:change="onChange" default-index="{{ 0 }}" />
- </van-popup>
|