eight
2024-08-22 59d213c1ce9e5e576fcca1f5c4251f06b301c5ac
update
已修改3个文件
14 ■■■■ 文件已修改
src/api/ecg/appointment/index.ts 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/ecg/queue/index.ts 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/ecg/room/RoomStatusSetting.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/ecg/appointment/index.ts
@@ -19,7 +19,7 @@
  bookId: string // 预约编号
  bookDate: Date // 预约日期
  bookTimeslot: number // 预约时间段
  bookTime: Date // 预约发生时间
  bookTime: Date // 预约发生时间, 点击预约的时间
  bookCheckType: number // 预约检查类型
}
src/api/ecg/queue/index.ts
@@ -54,9 +54,9 @@
    return await request.get({ url: `/ecg/queue/opening-setting` })
  },
  // 开诊前一刻,对应 就诊准备的人员 重新排序
  queueReorder: async () => {
    return await request.get({ url: `/ecg/queue/reorder` })
  // 手动开诊
  startBiz: async () => {
    return await request.get({ url: `/ecg/queue/startbiz` })
  }
}
src/views/ecg/room/RoomStatusSetting.vue
@@ -6,7 +6,7 @@
  </div>
  <el-button @click="startUsing">启用</el-button>
  <el-button @click="queueReorder"> 队列重排 </el-button>
  <el-button @click="startBiz"> 手动开诊 </el-button>
</template>
<script setup lang="ts">
@@ -28,8 +28,8 @@
  await queueApi.openingSetting();
}
const queueReorder = async () => {
  await queueApi.queueReorder();
const startBiz = async () => {
  await queueApi.startBiz();
}
/** 初始化 **/