| | |
| | | <template> |
| | | <div style="display: flex; flex-wrap: wrap; margin-bottom: 20px"> |
| | | <div style="display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 20px"> |
| | | <div class=wrap v-for="(value, key) in bedMap" :key="key"> |
| | | <RoomStatus :title="key" :bedList="value" @refresh="getList"/> |
| | | </div> |
| | |
| | | <script setup lang="ts"> |
| | | import {RoomStatus} from "@/components/RoomStatus" |
| | | import { RoomApi, RoomVO } from '@/api/ecg/room' |
| | | import { queueApi, queueVO } from '@/api/ecg/queue' |
| | | import { queueApi, QueueVO } from '@/api/ecg/queue' |
| | | |
| | | defineOptions({ name: 'RoomStatusSetting' }) |
| | | |