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.

80 lines
1.4 KiB

1 year ago
<template>
<view>
12 months ago
<status v-if="isShowStatus" :status='dataContent.inventoryStatus'></status>
<view class="uni-flex uni-row center">
1 year ago
<view class="text_recommend ">
{{Number(dataContent.qty)}}
</view>
12 months ago
<!-- /{{Number(dataContent.packQty)}} -->
1 year ago
<!-- v-show="!isShowStdPack" -->
<uom :uom="dataContent.uom"></uom>
</view>
12 months ago
1 year ago
<view>
12 months ago
<!-- {{dataContent}} -->
1 year ago
<pack-unit :dataContent="dataContent"></pack-unit>
12 months ago
<!-- <std-pack-qty v-show="isShowStdPack" :dataContent="dataContent"></std-pack-qty> -->
1 year ago
</view>
</view>
</template>
<script>
// import packQty from '@/mycomponents/qty/packQty.vue'
1 year ago
import packUnit from '@/mycomponents/qty/packUnit.vue'
import uom from '@/mycomponents/qty/uom.vue'
import status from '@/mycomponents/status/status.vue'
export default {
components: {
// packQty,
1 year ago
packUnit,
uom,
status
},
data() {
return {
};
},
// 此处定义传入的数据
props: {
type: {
type: String,
default: 'default' //recommend:推荐 compare:对比
},
dataContent: {
type: Object,
default: {}
},
recommendQty: {
type: Number,
default: 0
},
handleQty: {
type: Number,
default: 0
},
isShowStatus: {
type: Boolean,
default: true
},
isShowStdPack: {
type: Boolean,
default: true
}
},
watch: {
},
methods: {
},
}
</script>
<style lang="scss">
12 months ago
</style>