12345678910111213141516171819202122232425262728 |
- <template>
- <div class="history-container">
- <LeftCard />
- <RightCard @goBack="goBack"/>
- </div>
- </template>
- <script setup lang="ts">
- import LeftCard from './components/history/LeftCard.vue';
- import RightCard from './components/history/RightCard.vue';
- const { patientInfo } = defineProps<{ patientInfo: any }>()
- const emit = defineEmits(['change']);
- const goBack = () => {
- emit('change','enteralNutrition')
- };
- </script>
- <style lang="scss" scoped>
- .history-container {
- display: flex;
- gap: 20px;
- min-height: 100vh;
- background: #f5f7fa;
- }
- </style>
|