|
|
@@ -20,7 +20,7 @@ import { defineProps} from "vue";
|
|
|
<div class="box1-item-info">
|
|
|
<div>总床位</div>
|
|
|
<div class="box1-item-num">
|
|
|
- {{overviewStatisticsData.bedCount}}
|
|
|
+ {{overviewStatisticsData?.bedCount}}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -29,7 +29,7 @@ import { defineProps} from "vue";
|
|
|
<div class="box1-item-info">
|
|
|
<div>预定数</div>
|
|
|
<div class="box1-item-num">
|
|
|
- {{overviewStatisticsData.presetCount}}
|
|
|
+ {{overviewStatisticsData?.presetCount}}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -38,7 +38,7 @@ import { defineProps} from "vue";
|
|
|
<div class="box1-item-info">
|
|
|
<div>已入住</div>
|
|
|
<div class="box1-item-num">
|
|
|
- {{overviewStatisticsData.checkInCount}}
|
|
|
+ {{overviewStatisticsData?.checkInCount}}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -48,7 +48,7 @@ import { defineProps} from "vue";
|
|
|
<div class="box1-item-info">
|
|
|
<div>空床位</div>
|
|
|
<div class="box1-item-num">
|
|
|
- {{overviewStatisticsData.emptyBedCount}}
|
|
|
+ {{overviewStatisticsData?.emptyBedCount}}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -58,7 +58,7 @@ import { defineProps} from "vue";
|
|
|
<div class="box1-item-info">
|
|
|
<div>入住率</div>
|
|
|
<div class="box1-item-num">
|
|
|
- {{overviewStatisticsData.occupancyRate}}
|
|
|
+ {{overviewStatisticsData?.occupancyRate}}
|
|
|
<!-- <span>%</span> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -69,7 +69,7 @@ import { defineProps} from "vue";
|
|
|
<div class="box1-item-info">
|
|
|
<div>员工数</div>
|
|
|
<div class="box1-item-num">
|
|
|
- {{overviewStatisticsData.userCount}}
|
|
|
+ {{overviewStatisticsData?.userCount}}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -79,7 +79,7 @@ import { defineProps} from "vue";
|
|
|
<div class="box1-item-info">
|
|
|
<div>护工数</div>
|
|
|
<div class="box1-item-num">
|
|
|
- {{overviewStatisticsData.caregiverCount}}
|
|
|
+ {{overviewStatisticsData?.caregiverCount}}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -89,7 +89,7 @@ import { defineProps} from "vue";
|
|
|
<div class="box1-item-info">
|
|
|
<div>退住数</div>
|
|
|
<div class="box1-item-num">
|
|
|
- {{overviewStatisticsData.retreatCount}}
|
|
|
+ {{overviewStatisticsData?.retreatCount}}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|