| | |
| | | jumpFlag: 0 |
| | | } |
| | | |
| | | const data = await DoctorApi.recallPatient(patientVO); |
| | | emit("event_RecallFinish") |
| | | let data = "" |
| | | if (item.status === 5) // 常规、领用 过号 |
| | | data = await DoctorApi.recallPatient(patientVO); |
| | | else if (item.status === 7) |
| | | data = await DoctorApi.recallInstallPatient(patientVO); |
| | | |
| | | emit("event_RecallFinish") // 装机 过号 |
| | | message.info(data) |
| | | } |
| | | |
| | |
| | | <!-- {{item.roomName}} {{item.bedNo}}--> |
| | | <dict-tag :type="DICT_TYPE.ECG_CHECK_TYPE" :value="item.bookCheckType" /> |
| | | <dict-tag :type="DICT_TYPE.ECG_QUEUE_STATUS" :value="item.status" /> |
| | | <el-button v-if="item.status === 5" @click="recall(item)"> 召回 </el-button> |
| | | <el-button v-if="item.status === 5 || item.status === 7" @click="recall(item)"> 召回 </el-button> |
| | | </div> |
| | | </template> |
| | | |