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.

65 lines
1.1 KiB

1 year ago
<template>
<view class="center uni-column">
<view class="uni-flex uni-row">
<status v-show="isShowStatus" :status='dataContent.inventoryStatus'></status>
<view class="text_default center">
{{Number(dataContent.qty)}}
</view>
<uom :uom="dataContent.uom"></uom>
1 year ago
</view>
<view>
<pack-unit v-show="isShowPackUnit" :dataContent="dataContent"></pack-unit>
1 year ago
</view>
</view>
</template>
<script>
import packQty from '@/mycomponents/qty/packQty.vue'
1 year ago
import uom from '@/mycomponents/qty/uom.vue'
import status from '@/mycomponents/status/status.vue'
import packUnit from '@/mycomponents/qty/packUnit.vue'
1 year ago
export default {
components: {
packQty,
1 year ago
status,
uom,
packUnit
1 year ago
},
data() {
return {
};
},
// 此处定义传入的数据
props: {
dataContent: {
type: Object,
default: null
1 year ago
},
isShowStatus: {
type: Boolean,
default: true
},
isShowPack: {
1 year ago
type: Boolean,
default: true
},
isShowPackUnit: {
type: Boolean,
default: true
},
1 year ago
},
watch: {
},
methods: {
},
}
</script>
<style lang="scss">
</style>