26 lines
474 B
Vue
26 lines
474 B
Vue
<template>
|
|
<div class="waitForDischarge-container">
|
|
<patientList />
|
|
<medicalOrderList />
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import patientList from './patientList.vue'
|
|
import medicalOrderList from './medicalOrderList.vue'
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.waitForDischarge-container {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
.patientList-container {
|
|
flex: none;
|
|
width: 240px;
|
|
}
|
|
|
|
.medicalOrderList-container {
|
|
flex: 1;
|
|
}
|
|
}
|
|
</style> |