| | |
| | | <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']" |
| | | > |
| | | 查看 |
| | |
| | | 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) |
| | | } |
| | | |
| | | /** 删除按钮操作 */ |