|
@@ -66,7 +66,10 @@
|
|
<u-tag v-if="item.bizTypeDictValue" :text="item.bizTypeDictValue" :border-color="$config('primaryColor')" shape="circle" size="mini" />
|
|
<u-tag v-if="item.bizTypeDictValue" :text="item.bizTypeDictValue" :border-color="$config('primaryColor')" shape="circle" size="mini" />
|
|
</view>
|
|
</view>
|
|
<view class="flex align_center justify_between">
|
|
<view class="flex align_center justify_between">
|
|
- <view>{{item.unitName || '--'}}</view>
|
|
|
|
|
|
+ <view>
|
|
|
|
+ <span v-if="item.unitType&&item.unitType=='CUSTOMER'">{{ item.unitNameCurrent||'--' }}</span>
|
|
|
|
+ <span v-else>{{ item.unitName||'--' }}</span>
|
|
|
|
+ </view>
|
|
<view>
|
|
<view>
|
|
<view :style="{color: item.qty && item.qty!=0 ? (item.flowType=='PUT' ? 'green':'red'):'', display:'inline-block'}"><text v-if="item.qty && item.qty!=0">{{ item.flowType=='PUT' ? '+':'-' }}</text>{{ toThousands(item.qty||0) }}</view>
|
|
<view :style="{color: item.qty && item.qty!=0 ? (item.flowType=='PUT' ? 'green':'red'):'', display:'inline-block'}"><text v-if="item.qty && item.qty!=0">{{ item.flowType=='PUT' ? '+':'-' }}</text>{{ toThousands(item.qty||0) }}</view>
|
|
{{item.product && item.product.unit}}
|
|
{{item.product && item.product.unit}}
|