|
|
@ -2,19 +2,20 @@ |
|
|
|
<recordComMainCard :dataContent="dataContent"> |
|
|
|
<recordComDetailCard :dataContent="dataContent"></recordComDetailCard> |
|
|
|
</recordComMainCard> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
import recordComMainCard from '@/mycomponents/receive/recordComMainCard.vue' |
|
|
|
import recordComDetailCard from '@/mycomponents/receive/recordComDetailCard.vue' |
|
|
|
const props = defineProps({ |
|
|
|
<script setup lang="ts"> |
|
|
|
import recordComMainCard from '@/mycomponents/receive/recordComMainCard.vue' |
|
|
|
import recordComDetailCard from '@/mycomponents/receive/recordComDetailCard.vue' |
|
|
|
|
|
|
|
const props = defineProps({ |
|
|
|
dataContent: { |
|
|
|
type: Object, |
|
|
|
default: {} |
|
|
|
} |
|
|
|
}) |
|
|
|
</script> |
|
|
|
}) |
|
|
|
</script> |
|
|
|
|
|
|
|
<style lang="scss"> |
|
|
|
<style lang="scss"> |
|
|
|
|
|
|
|
</style> |
|
|
|
</style> |
|
|
|