|
@ -2,28 +2,40 @@ |
|
|
<view :class="dataContent.scaned?'scan_view':''" style="background-color: #ffffff;margin-bottom: 1px; "> |
|
|
<view :class="dataContent.scaned?'scan_view':''" style="background-color: #ffffff;margin-bottom: 1px; "> |
|
|
<view class="uni-flex uni-row space-between" style="align-items: center"> |
|
|
<view class="uni-flex uni-row space-between" style="align-items: center"> |
|
|
<view> |
|
|
<view> |
|
|
<pack v-if="dataContent.parentNumber" title="父包装" :packingCode="dataContent.parentNumber"></pack> |
|
|
<pack v-if="dataContent.parentNumber" title="父包装" :packingCode="dataContent.parentNumber"></pack> |
|
|
<pack v-if="isShowPack && dataContent.packingNumber" :packingCode="dataContent.packingNumber"></pack> |
|
|
<pack v-if="isShowPack && dataContent.packingNumber" :packingCode="dataContent.packingNumber"></pack> |
|
|
<batch v-if="isShowBatch && dataContent.batch" :batch="dataContent.batch"></batch> |
|
|
<batch v-if="isShowBatch && dataContent.batch" :batch="dataContent.batch"></batch> |
|
|
<location title="来源库位" v-if="isShowFromLocation" :locationCode="dataContent.locationCode"></location> |
|
|
<location title="来源库位" v-if="isShowFromLocation" :locationCode="dataContent.locationCode"></location> |
|
|
<to-location title="目标库位" v-if="isShowToLocation" :locationCode="dataContent.toLocationCode"> |
|
|
<to-location title="目标库位" v-if="isShowToLocation" :locationCode="dataContent.toLocationCode"> |
|
|
</to-location> |
|
|
</to-location> |
|
|
</view> |
|
|
</view> |
|
|
<view class="uni-flex uni-row center"> |
|
|
<view class="uni-flex" style="flex-direction: column;"> |
|
|
<!-- <qty v-if="dataContent.record==null ||dataContent.record==undefined " :dataContent="dataContent" |
|
|
<view class="uni-flex uni-row center"> |
|
|
:isShowStdPack="isShowStdPack" :isShowStatus="isShowStatus"></qty> --> |
|
|
|
|
|
<qty v-if="dataContent.handleQty==0 || dataContent.handleQty==undefined" :dataContent="dataContent" |
|
|
|
|
|
:isShowStdPack="isShowStdPack" :isShowStatus="isShowStatus"></qty> |
|
|
|
|
|
<compare-qty v-else :dataContent="dataContent" :recommendQty="Number( dataContent.qty)" |
|
|
|
|
|
:handleQty="Number (dataContent.handleQty)" :isShowStdPack="isShowStdPack" |
|
|
|
|
|
:isShowStatus='isShowStatus'> |
|
|
|
|
|
</compare-qty> |
|
|
|
|
|
|
|
|
|
|
|
<view class="uni-flex uni-row" style="vertical-align:center" v-if="isDevlement()"> |
|
|
|
|
|
<text style="font-size: 30rpx;color: #2979ff; width: 20px;" @click="copy">复制</text> |
|
|
<!-- <qty v-if="dataContent.record==null ||dataContent.record==undefined " :dataContent="dataContent" |
|
|
|
|
|
:isShowStdPack="isShowStdPack" :isShowStatus="isShowStatus"></qty> --> |
|
|
|
|
|
<qty v-if="dataContent.handleQty==0 || dataContent.handleQty==undefined" :dataContent="dataContent" |
|
|
|
|
|
:isShowStdPack="isShowStdPack" :isShowStatus="isShowStatus"></qty> |
|
|
|
|
|
<compare-qty v-else :dataContent="dataContent" :recommendQty="Number( dataContent.qty)" |
|
|
|
|
|
:handleQty="Number (dataContent.handleQty)" :isShowStdPack="isShowStdPack" |
|
|
|
|
|
:isShowStatus='isShowStatus'> |
|
|
|
|
|
</compare-qty> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<view class="uni-flex uni-row" style="vertical-align:center" v-if="isDevlement()"> |
|
|
|
|
|
<text style="font-size: 30rpx;color: #2979ff; width: 20px;" @click="copy">复制</text> |
|
|
|
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
<view class="" v-if="dataContent.inventoryStatus"> |
|
|
|
|
|
<move-status :fromInventoryStatus="dataContent.inventoryStatus"> |
|
|
|
|
|
</move-status> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
</view> |
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view> |
|
|
</view> |
|
|
<!-- <u-line></u-line> --> |
|
|
<!-- <u-line></u-line> --> |
|
|
</view> |
|
|
</view> |
|
@ -38,6 +50,7 @@ |
|
|
import recommendQty from '@/mycomponents/qty/recommendQty.vue' |
|
|
import recommendQty from '@/mycomponents/qty/recommendQty.vue' |
|
|
import compareQty from '@/mycomponents/qty/compareQty.vue' |
|
|
import compareQty from '@/mycomponents/qty/compareQty.vue' |
|
|
import config from '@/static/config.js' |
|
|
import config from '@/static/config.js' |
|
|
|
|
|
import moveStatus from '@/mycomponents/balance/moveStatus.vue' |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
components: { |
|
|
components: { |
|
@ -48,6 +61,7 @@ |
|
|
qty, |
|
|
qty, |
|
|
recommendQty, |
|
|
recommendQty, |
|
|
compareQty, |
|
|
compareQty, |
|
|
|
|
|
moveStatus |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
data() { |
|
|
data() { |
|
|