版本更新
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user