Browse Source

no message

feature/v1.3
xpz2018 5 years ago
parent
commit
eaacc243f8
1 changed files with 11 additions and 11 deletions
  1. 22
      pages/storage/order-info/index.wxml

22
pages/storage/order-info/index.wxml

@ -92,43 +92,43 @@
<van-cell center>
<view slot="title" class="flex flex-justify">
<view class="text-black">纸品品类</view>
<view class="text-gray">{{orderInfo.categoryName || ''}}</view>
<view class="text-gray">{{form.categoryName || ''}}</view>
</view>
</van-cell>
<van-cell center>
<view slot="title" class="flex flex-justify">
<view class="text-black">结算单价(元/吨)</view>
<view class="text-gray">{{formate.formatePrice(orderInfo.settleUnitPrice)}}</view>
<view class="text-gray">{{formate.formatePrice(form.settleUnitPrice)}}</view>
</view>
</van-cell>
<van-cell wx:if="{{orderInfo.netWeight}}">
<van-cell wx:if="{{form.netWeight}}">
<view slot="title" class="flex flex-justify">
<view class="text-black">净重(吨)</view>
<view class="text-gray">{{formate.formateWeight(orderInfo.netWeight)}}</view>
<view class="text-gray">{{formate.formateWeight(form.netWeight)}}</view>
</view>
</van-cell>
<van-cell center>
<view class="flex flex-justify text-black">
<view class="text-black">结算重量(吨)</view>
<view class="text-gray">{{formate.formateWeight(orderInfo.settleWeight)}}</view>
<view class="text-gray">{{formate.formateWeight(form.settleWeight)}}</view>
</view>
</van-cell>
<van-cell wx:if="{{orderInfo.deductPercent}}">
<van-cell wx:if="{{form.deductPercent}}">
<view slot="title" class="flex flex-justify">
<view class="text-black">扣点(%)</view>
<view class="text-gray">{{ orderInfo.deductPercent || ''}}</view>
<view class="text-gray">{{ form.deductPercent || ''}}</view>
</view>
</van-cell>
<van-cell wx:if="{{orderInfo.otherFee}}">
<van-cell wx:if="{{form.otherFee}}">
<view slot="title" class="flex flex-justify">
<view class="text-black">其他费用(元)</view>
<view class="text-gray">{{ orderInfo.otherFee}}</view>
<view class="text-gray">{{ form.otherFee}}</view>
</view>
</van-cell>
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="text-black">结算金额(元)</view>
<view class="text-gray">{{ orderInfo.settlePrice}}</view>
<view class="text-gray">{{ form.settlePrice}}</view>
</view>
</van-cell>
<view class="bg-white" style="padding: 20rpx 32rpx" wx:if="{{fileList.length}}">
@ -171,7 +171,7 @@
<view class="text-gray">{{ orderInfo.driverName || ''}}</view>
</view>
</van-cell>
<van-field label="备注" type="textarea" input-align="right" readonly autosize border="{{ false }}" />
<!-- <van-field label="备注" type="textarea" input-align="right" readonly autosize border="{{ false }}" /> -->
</van-collapse-item>
<van-collapse-item title="过磅信息" content-class="collapse-item" name="1">
<van-cell wx:if="{{poundInfo.firstWeight}}">

Loading…
Cancel
Save