86 lines
4.5 KiB
Plaintext
86 lines
4.5 KiB
Plaintext
<!--index.wxml-->
|
|
<wxs module="filter" src="../../utils/filters.wxs"></wxs>
|
|
<cu-custom bgColor="bg-gradual-blue">
|
|
<view slot="content">AUTS数据中心-出货装车</view>
|
|
<view slot="contents"> {{DBname}} </view>
|
|
</cu-custom>
|
|
<view class="padding-sm bg-white radius shadow shadow-lg" style="width: {{ScreenTotalW}}rpx;height:{{ScreenTotalH}}rxp;">
|
|
<!-- 条件查询开始 -->
|
|
<view style="height: {{ScreenH}}rpx; width: {{ScreenTotalW}}rpx;">
|
|
<view style="flex-basis:100% " class="flex padding-top-xs">
|
|
<view>
|
|
<van-button type="default" bindtap="selapptype" data-val="-1" color="{{apptype==-1?'#20a860':''}}"> <span>全部({{quanbunum}})</span></van-button>
|
|
</view>
|
|
<view bindtap="selapptype" style="margin-left: 1px;">
|
|
<van-button type="default" bindtap="selapptype" data-val="0" color="{{apptype==0?'#e65f50':''}}"> <span>未装车({{wzxnum}})</span></van-button>
|
|
</view>
|
|
<view style="margin-left: 1px;">
|
|
<van-button type="default" style="margin-left: 1px;" bindtap="selapptype" data-val="1" color="{{apptype==1?'#f8ce53':''}}"> <span>装车中({{zxznum}})</span></van-button>
|
|
</view>
|
|
<view style="margin-left: 3px;">
|
|
<van-button type="default" bindtap="selapptype" data-val="2" color="{{apptype==2?'#20a860':''}}"> <span>已结单({{wcddnum}})</span></van-button>
|
|
</view>
|
|
</view>
|
|
<view style="flex-basis:100%; font-size: 10px;" class="flex padding-top-xs align-center">
|
|
<van-dropdown-menu>
|
|
<van-dropdown-item value="{{ value1 }}" options="{{ option1 }}" bind:change="onConfirm" />
|
|
</van-dropdown-menu>
|
|
<input type="number" style="border-bottom: 2rpx solid #ccc !important; margin-left: 20px; margin-top: 20px;" class="text-df" placeholder="搜索订单" name="input" model:value="{{name}}"></input>
|
|
<button bindtap="sreach" class="cuIcon-search" style="height: 30px; width: 80px;background-color: #20a860;"></button>
|
|
</view>
|
|
<!-- 条件查询结束 -->
|
|
</view>
|
|
<!-- 内容区域开始 -->
|
|
<!-- 内容区开始 -->
|
|
<scroll-view class="scroll-view_H .solids-right .solids-left" scroll-y="true" style="height:{{ScreenTotalH-ScreenH-300}}rpx;">
|
|
<block wx:for="{{listers}}" wx:key="this">
|
|
<view id="{{item.ShippingCode}}" bindtap="DianJiDingDan">
|
|
<view class="weathers_imet_lists .light .solids-top .solids-left .shadow-blur ">
|
|
<view style="font-weight: 550;" selectable="true" id="shiplistitem_{{item.ShippingCode}}" bind:longpress="copyText">
|
|
<block wx:if="{{isCopyingTextDomID==('shiplistitem_' + item.ShippingCode)}}">
|
|
<span class="long-press-selecting">{{item.ShippingCode}}</span>
|
|
</block>
|
|
<block wx:else>
|
|
<span style="color: #7f6000;">{{filter.SubString(item.ShippingCode,0,2)}}</span>
|
|
<span style="color: #2e75b6">{{filter.SubString(item.ShippingCode,2,6)}}</span>
|
|
<span style="color: #7f6000;">{{filter.SubString(item.ShippingCode,6,10)}}</span>
|
|
<span style="color: #2e75b6">{{filter.SubString(item.ShippingCode,10,14)}}</span>
|
|
<span style="color: #7f6000;">{{filter.SubString(item.ShippingCode,14)}}</span>
|
|
</block>
|
|
</view>
|
|
<view>
|
|
<span class="cuIcon-countdown .text-gray">
|
|
{{filter.TimeFormat(item.CreateDateTime)}}
|
|
</span>
|
|
</view>
|
|
<view>
|
|
<span class="cuIcon-rankfill">
|
|
{{item.QTY}}/已装:{{item.BindedColorBoxQTY}}</span>
|
|
</view>
|
|
<view>
|
|
<span class=".cuIcon-post text-cut" style="display: inline-block; width: 200px;">
|
|
{{item.Remark}}</span>
|
|
</view>
|
|
</view>
|
|
<view class="weathers_imet_list .light .solids-top .solids-right .shadow-blur">
|
|
<view class="text-cut .text-blue" style="font-weight: 900;">
|
|
<span class="text-df">{{item.projectNameInfo}}</span>
|
|
</view>
|
|
<view>
|
|
<span class=".cuIcon-new">
|
|
<span class=" {{(item.Status === 1 ? '.text-red ' : (item.Status===2?'.text-yellow ':'.text-green'))}}">
|
|
{{(item.Status === 1 ? '未装车' : (item.Status === 2 ? "装车中" : "已结单"))}}
|
|
</span>
|
|
</span>
|
|
<view>
|
|
<span class=" .cuIcon-location text-cut" style="display: inline-block; width: 100px;">
|
|
{{item.Destination}}
|
|
</span>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
</scroll-view>
|
|
<!-- 内容区结束 -->
|
|
</view> |