eight
2024-09-19 b9370c7e56779b08adbbc9c149f40023b577a92f
开诊界面 布局调整
已修改1个文件
27 ■■■■■ 文件已修改
src/views/ecg/doctor/index.vue 27 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/doctor/index.vue
@@ -151,7 +151,7 @@
</script>
<template>
  <el-container style="border: red solid; height: 100%;">
  <el-container>
    <el-header style="background-color: var(--el-color-primary-light-7); font-size: 24px">
      <TitlePanel :room="roomBedVO" :patientStatistic="patientStat" />
    </el-header>
@@ -159,20 +159,25 @@
      <el-main style="border: solid var(--el-color-primary-light-7)">
        <DevInstallPanel ref="devInstallPanelRef" @success="onEvent"/>
      </el-main>
      <el-container width="500px" style="border: solid var(--el-color-primary-light-7)">
        <el-main style="border: solid var(--el-color-primary-light-7)" >
      <el-aside width="400px" style="border: solid var(--el-color-primary-light-7)">
          <QueuePanel :queue="patientList"/>
        </el-main>
        <el-footer >
          <el-button :disabled="finishFlag" type="primary" @click="finishNextPatient">叫号</el-button>
          <el-button :disabled="passFlag" type="primary" @click="passNextPatient">过号</el-button>
          <el-button :disabled="bedControlFlag" type="primary" @click="bedControl">{{state?'暂停':'恢复'}}</el-button>
        </el-footer>
      </el-container>
      </el-aside>
    </el-container>
    <el-container class="right-bottom">
      <el-button :disabled="finishFlag" type="primary" @click="finishNextPatient">叫号</el-button>
      <el-button :disabled="passFlag" type="primary" @click="passNextPatient">过号</el-button>
      <el-button :disabled="bedControlFlag" type="primary" @click="bedControl">{{state?'暂停':'恢复'}}</el-button>
    </el-container>
  </el-container>
</template>
<style scoped lang="scss">
.right-bottom {
  position: absolute;
  bottom: 50px;
  right: 100px;
  //background-color: #f00;
  //color: #fff;
  //padding: 10px;
}
</style>