import 去掉多余逗号并略作格式整理

This commit is contained in:
2026-05-11 09:53:02 +08:00
parent 0f1e57227b
commit 14f8a8b0a3
2 changed files with 24 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
<!--
* 住院医生站 汇总发药申请复用药房发药汇总单能力
-->
<template>
<div class="summary-drug-application">
<MedicationSummary />
</div>
</template>
<script setup>
import MedicationSummary from '@/views/drug/inpatientMedicationDispensing/components/MedicationSummary.vue';
</script>
<style scoped>
.summary-drug-application {
height: 100%;
min-height: 400px;
overflow: auto;
}
</style>