You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<template>
|
|
|
|
<view :class="detail.scaned?'scan_view':''" style="background-color: #ffffff;">
|
|
|
|
<view class="uni-flex uni-row space-between uni-inline-item">
|
|
|
|
<view class="uni-flex uni-row uni-inline-item">
|
|
|
|
<view style=" width: 20px;display: flex;justify-content: center;align-items: center; color: #32C1E8;">
|
|
|
|
原始
|
|
|
|
</view>
|
|
|
|
<view>
|
|
|
|
<pack v-if="isShowPack" :packingCode="detail.packingNumber"></pack>
|
|
|
|
<batch v-if="isShowBatch" :batch="detail.batch"></batch>
|
|
|
|
<location v-if="isShowLocation" :locationCode="detail.fromLocationCode"></location>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view>
|
|
|
|
<recommend-qty v-if="detail.Records==null || detail.Records.length==0" :dataContent="detail"
|
|
|
|
:isShowStdPack="false" :isShowStatus="false"></recommend-qty>
|
|
|
|
<compare-qty v-else :dataContent="detail" :recommendQty="Number( detail.qty)"
|
|
|
|
:handleQty="Number(detail.handleQty)" :isShowStdPack="false" :isShowStatus="false">
|
|
|
|
</compare-qty>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import pack from '@/mycomponents/balance/pack.vue'
|
|
|
|
import location from '@/mycomponents/balance/location.vue'
|
|
|
|
import batch from '@/mycomponents/balance/batch.vue'
|
|
|
|
import recommendQty from '@/mycomponents/qty/recommendQty.vue'
|
|
|
|
import compareQty from '@/mycomponents/qty/compareQty.vue'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
pack,
|
|
|
|
location,
|
|
|
|
batch,
|
|
|
|
recommendQty,
|
|
|
|
compareQty
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
detail: {
|
|
|
|
type: Object,
|
|
|
|
default: {}
|
|
|
|
},
|
|
|
|
isShowPack: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
isShowBatch: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
isShowLocation: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
|
|
|
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.recommend {
|
|
|
|
position: absolute;
|
|
|
|
left: 25px;
|
|
|
|
top: 70px;
|
|
|
|
width: 10px;
|
|
|
|
height: 30px;
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|