| | |
| | | bookId: string // 预约编号 |
| | | bookDate: Date // 预约日期 |
| | | bookTimeslot: number // 预约时间段 |
| | | bookTime: Date // 预约发生时间 |
| | | bookTime: Date // 预约发生时间, 点击预约的时间 |
| | | bookCheckType: number // 预约检查类型 |
| | | } |
| | | |
| | |
| | | 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` }) |
| | | } |
| | | |
| | | } |
| | |
| | | </div> |
| | | <el-button @click="startUsing">启用</el-button> |
| | | |
| | | <el-button @click="queueReorder"> 队列重排 </el-button> |
| | | <el-button @click="startBiz"> 手动开诊 </el-button> |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | |
| | | await queueApi.openingSetting(); |
| | | } |
| | | |
| | | const queueReorder = async () => { |
| | | await queueApi.queueReorder(); |
| | | const startBiz = async () => { |
| | | await queueApi.startBiz(); |
| | | } |
| | | |
| | | /** 初始化 **/ |