update
1.手表监测添加参数,查询当天信息
This commit is contained in:
@@ -24,7 +24,6 @@
|
||||
/>
|
||||
<!--一线医疗点每日工作动态-->
|
||||
<DailyWorkTrends theme="dark" :refreshState="refreshState" class="daily-work-trends" />
|
||||
<EmergencyData @emergencyDataList="emergencyDataList" class="emergency-data" />
|
||||
</div>
|
||||
<div class="body-d-middle">
|
||||
<CenterMap
|
||||
@@ -40,9 +39,10 @@
|
||||
<!--健康终端报警-->
|
||||
<TerminalAlarm :refreshState="refreshState" :setting="setting" @emit-view-detail="handleEmployeeDialog" />
|
||||
<!--员工队伍健康状况-->
|
||||
<EmployeeHealth theme="dark" :refreshState="refreshState" :setting="setting" />
|
||||
<!--体检数据-->
|
||||
<PhysicalExaminationData :key="tabState" :refreshState="refreshState" :setting="setting" />
|
||||
<!-- <EmployeeHealth theme="dark" :refreshState="refreshState" :setting="setting" />-->
|
||||
<!-- <!–体检数据–>-->
|
||||
<!-- <PhysicalExaminationData :key="tabState" :refreshState="refreshState" :setting="setting" />-->
|
||||
<EmergencyData @emergencyDataList="emergencyDataList" class="emergency-data" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="bottom-d"></div>
|
||||
@@ -95,7 +95,7 @@
|
||||
|
||||
const dayTimeO = ref();
|
||||
const dayTimeT = ref();
|
||||
const interval = ref(1);
|
||||
const interval = ref<any>(null);
|
||||
const title = ref(screenTitle ? screenTitle : '应急就医服务中心' + (simpleName || ''));
|
||||
const phone = ref(centerTel || '0951-6805199');
|
||||
|
||||
@@ -405,23 +405,33 @@
|
||||
}
|
||||
|
||||
.central-screen-body-left {
|
||||
.service-details {
|
||||
//.service-details {
|
||||
// height: calc(100% / 3);
|
||||
//}
|
||||
//
|
||||
//.daily-work-trends {
|
||||
// height: calc(100% / 3);
|
||||
//}
|
||||
//
|
||||
//.emergency-data {
|
||||
// height: calc(100% / 3);
|
||||
//}
|
||||
> :nth-child(1) {
|
||||
width: 100%;
|
||||
height: calc(100% / 3);
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.daily-work-trends {
|
||||
height: calc(100% / 3);
|
||||
}
|
||||
|
||||
.emergency-data {
|
||||
height: calc(100% / 3);
|
||||
> :nth-child(2) {
|
||||
width: 100%;
|
||||
height: calc(100% / 3 * 2);
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.body-d-right {
|
||||
> :nth-child(n) {
|
||||
width: 100%;
|
||||
height: calc(100% / 3);
|
||||
height: calc(100% / 2);
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
@@ -437,4 +447,8 @@
|
||||
background: url('/@/assets/images/bottom-b.png') no-repeat;
|
||||
background-size: 100% 100%;
|
||||
}
|
||||
|
||||
:deep(.inner .scroll) {
|
||||
height: 100% !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user