| | |
| | | {{scope.row.patName}} ({{genderFormat(scope.row.patGender)}}) |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="检查类型" align="center" prop="bookCheckType" > |
| | | <el-table-column label="检查类型" align="center" prop="bookCheckType" min-width="100px"> |
| | | <template #default="scope"> |
| | | {{checkTypeStore.getCheckTypeName(scope.row.bookCheckType)}} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="患者详情" align="center" prop="patDetails" /> |
| | | <el-table-column label="患者详情" align="center" prop="patDetails" min-width="300px"> |
| | | <template #default="scope"> |
| | | <span>{{scope.row.patDetails?.mobile}} {{scope.row.patDetails?.wardDesc}} {{scope.row.patDetails?.bedNo}}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="预约时段" align="center" prop="bookTimeslot" > |
| | | <template #default="scope"> |
| | | <dict-tag :type="DICT_TYPE.ECG_BOOK_TIMESLOT" :value="scope.row.bookTimeslot" /> |
| | |
| | | <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) |
| | | } |
| | | |
| | | /** 删除按钮操作 */ |