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.
 
 
 
 

57 lines
901 B

<template>
<view>
<balance :dataContent="detail" :isShowStdPack="false" :isShowPack="true" :isShowFromLocation="true"></balance>
<purchase-info :dataContent="labelContent"></purchase-info>
</view>
</template>
<script>
import balance from '@/mycomponents/balance/balance.vue'
import purchaseInfo from '@/mycomponents/purchase/purchaseInfo.vue'
export default {
components: {
balance,
purchaseInfo
},
data() {
return {
}
},
props: {
dataContent: {
type: Object,
default: {}
},
packageContent: {
type: Object,
default: {}
},
isShowPack: {
type: Boolean,
default: true
},
isShowBatch: {
type: Boolean,
default: true
},
isShowLocation: {
type: Boolean,
default: true
},
isShowStdPack: {
type: Boolean,
default: true
}
},
watch: {
},
methods: {
}
}
</script>
<style>
</style>