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.
53 lines
1.3 KiB
53 lines
1.3 KiB
1 year ago
|
<template>
|
||
|
<view :class="dataContent.scaned?'scan_view':''" style="background-color: #fff; ">
|
||
|
<view class="uni-flex uni-row space-between" style="align-items: center">
|
||
|
<view style="word-break: break-all;">
|
||
|
<item :dataContent="dataContent" style="margin-left: 4px; padding:0px 5px 5px;"></item>
|
||
|
<pack v-if="dataContent.number!=null" :packingCode="dataContent.number"></pack>
|
||
|
<batch v-if="dataContent.batch!=null" :batch="dataContent.batch"></batch>
|
||
|
</view>
|
||
|
<view class="uni-flex uni-row" style="word-break: break-all;">
|
||
|
<recommend-qty v-if="dataContent.handleQty==null || dataContent.handleQty==undefined"
|
||
|
:dataContent="dataContent" :isShowStdPack="false" :isShowStatus="isShowStatus"
|
||
|
:isShowPackCount="false"></recommend-qty>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import item from '@/mycomponents/item/item.vue'
|
||
|
import pack from '@/mycomponents/balance/pack.vue'
|
||
|
import batch from '@/mycomponents/balance/batch.vue'
|
||
|
import recommendQty from '@/mycomponents/qty/recommendQty.vue'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
pack,
|
||
|
batch,
|
||
|
recommendQty,
|
||
|
item
|
||
|
},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: null
|
||
|
},
|
||
|
},
|
||
|
watch: {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|