eight
2024-08-14 a7e2a4a258132c0c025d063630513757c157f16b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <RoomStatus title="诊室206" :doctorNum="3" v-model="bedStatusVo"/>
</template>
 
<script setup lang="ts">
import {RoomStatus} from "@/components/RoomStatus"
import {BedStatusVO} from "@/views/ecg/room/index";
 
const bedStatusVo: BedStatusVO[] = reactive([{
  bedNo: "a9",
  opStatus: true
},
  {
    bedNo: "a18",
    opStatus: false
  }
])
 
</script>
 
<style scoped lang="scss">
 
</style>