Browse Source

no message

feature/v1.6
xpz2018 4 years ago
parent
commit
a0fb5dcea1
2 changed files with 12 additions and 9 deletions
  1. 10
      pages/process/order-info/index.wxml
  2. 11
      pages/process/order-list/index.wxml

10
pages/process/order-info/index.wxml

@ -51,7 +51,7 @@
<van-cell> <van-cell>
<view slot="title" class="flex flex-justify"> <view slot="title" class="flex flex-justify">
<view class="text-black">废纸品类</view> <view class="text-black">废纸品类</view>
<view class="text-gray">{{form.productName}}</view>
<view class="text-gray">{{form.productName || '- -'}}</view>
</view> </view>
</van-cell> </van-cell>
<van-cell> <van-cell>
@ -75,7 +75,7 @@
<van-cell wx:if="{{form.deductWeight}}"> <van-cell wx:if="{{form.deductWeight}}">
<view slot="title" class="flex flex-justify"> <view slot="title" class="flex flex-justify">
<view class="text-black">扣重(公斤)</view> <view class="text-black">扣重(公斤)</view>
<view class="text-gray">-{{form.deductWeight}}</view>
<view class="text-gray">-{{form.deductWeight }}</view>
</view> </view>
</van-cell> </van-cell>
<van-cell wx:if="{{form.deductPercent}}"> <van-cell wx:if="{{form.deductPercent}}">
@ -87,16 +87,16 @@
<van-cell> <van-cell>
<view slot="title" class="flex flex-justify"> <view slot="title" class="flex flex-justify">
<view class="text-black">定价员</view> <view class="text-black">定价员</view>
<view class="text-gray">{{form.inspectionPerson || ''}}</view>
<view class="text-gray">{{form.inspectionPerson || '- -'}}</view>
</view> </view>
</van-cell> </van-cell>
<van-cell> <van-cell>
<view slot="title" class="flex flex-justify"> <view slot="title" class="flex flex-justify">
<view class="text-black">定价时间</view> <view class="text-black">定价时间</view>
<view class="text-gray">{{form.inspectionTime || ''}}</view>
<view class="text-gray">{{form.inspectionTime || '- -'}}</view>
</view> </view>
</van-cell> </van-cell>
<van-cell>
<van-cell wx:if="{{form.totalWeighingPicture && form.totalWeighingPicture.length}}">
<view slot="title" class="text-black"> <view slot="title" class="text-black">
<view>过毛重照片</view> <view>过毛重照片</view>
<view class="flex" style="margin-top:18rpx"> <view class="flex" style="margin-top:18rpx">

11
pages/process/order-list/index.wxml

@ -65,10 +65,13 @@
<view class="text-df text-gray" wx:elif="{{item.status == 6}}">已关闭</view> <view class="text-df text-gray" wx:elif="{{item.status == 6}}">已关闭</view>
</view> </view>
</view> </view>
<view class="flex flex-justify" style="margin-top:12rpx">
<view class="text-sm text-gray">品类:{{item.productName}}</view>
<view class="text-sm text-gray">重量:{{item.settleWeight}}公斤</view>
<view class="text-sm text-gray">金额:{{item.settlePrice}}元</view>
<view class="flex flex-justify" style="margin-top:12rpx" wx:if="{{item.status == 6}}">
<view class="text-sm text-gray">过磅时间:{{item.createTime || ''}}</view>
</view>
<view class="flex flex-justify" style="margin-top:12rpx" wx:else>
<view class="text-sm text-gray">品类:{{item.productName || ''}}</view>
<view class="text-sm text-gray">重量:{{item.settleWeight || ''}}公斤</view>
<view class="text-sm text-gray">金额:{{item.settlePrice || ''}}元</view>
</view> </view>
</view> </view>
</view> </view>

Loading…
Cancel
Save