Commit 74720569 authored by xiaoyan's avatar xiaoyan

fix: 修改取值字段

parent 7569de19
...@@ -28,7 +28,8 @@ ...@@ -28,7 +28,8 @@
</view> </view>
<!-- 包装类型 --> <!-- 包装类型 -->
<view style="color:red;fontWeight:bold;"> <view style="color:red;fontWeight:bold;">
<dict-tag :type="DICT_TYPE.ECW_PACKAGING_TYPE" :value="order.unit" /> {{ order.units ? order.units.split(',').join(', ') : '' }}
<!-- <dict-tag :type="DICT_TYPE.ECW_PACKAGING_TYPE" :value="order.unit" /> -->
</view> </view>
<!-- 关联单 --> <!-- 关联单 -->
<view v-if="v.hasRelationOrder" style="color:red;fontWeight:bold;" @tap="relatedClick(order.orderId)">{{$t('关联单')}}</view> <view v-if="v.hasRelationOrder" style="color:red;fontWeight:bold;" @tap="relatedClick(order.orderId)">{{$t('关联单')}}</view>
...@@ -43,7 +44,7 @@ ...@@ -43,7 +44,7 @@
{{ order.multiSpecification === true ? ('('+$t('多规格')+')') : ''}} {{ order.multiSpecification === true ? ('('+$t('多规格')+')') : ''}}
</view> </view>
</view> </view>
<view class="flex-sub">{{ order.positionNo }}</view> <view class="flex-sub">{{ order.positionNo ? order.positionNo.split(',').join(', ') : '' }}</view>
<view class="flex-sub">{{ order.containerNumber }}</view> <view class="flex-sub">{{ order.containerNumber }}</view>
<view class="flex-sub">{{ order.containerNumber === selfNo ? $t('') : $t('') }}</view> <view class="flex-sub">{{ order.containerNumber === selfNo ? $t('') : $t('') }}</view>
</view> </view>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment