<template> <view :class="dataContent.scaned?'scan_view':''"> <balance :dataContent="dataContent" :isShowStdPack="false" :isShowPack="isShowPack" :isShowLocation="isShowLocation"></balance> <!-- <purchase-info :dataContent="packageContent"></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>