eight
2024-11-25 549e0a0cda7fdaafc3d2e456b61187b7eed2c131
src/views/ecg/queue/index.vue
@@ -176,7 +176,7 @@
          <el-button
            link
            type="primary"
            @click="openAppointmentForm('preview', scope.row.patId)"
            @click="openAppointmentForm('preview', scope.row.patId, scope.row.bookCheckType)"
            v-hasPermi="['ecg:appointment:preview']"
          >
            查看
@@ -297,8 +297,8 @@
const openForm = (type: string, id?: number) => {
  formRef.value.open(type, id)
}
const openAppointmentForm = (type: string, patId: string, status: number) => {
  formRef.value.openByQueue(type, patId, status)
const openAppointmentForm = (type: string, patId: string, checkType: number) => {
  formRef.value.openByQueue(type, patId, checkType)
}
/** 删除按钮操作 */