版本更新

This commit is contained in:
Zhang.WH
2025-09-03 15:54:41 +08:00
parent 0b93d16b64
commit 8f82322d10
3290 changed files with 154339 additions and 23829 deletions

View File

@@ -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>