{{ scope.row.name }}
{{
scope.row.status === 1 ? '待诊' : scope.row.status === 2 ? '在诊' : scope.row.status === 3 ? '已诊' : '-'
}}
{{ sectionList.find((item:any)=>item.id===scope.row.organizationSectionId)?.name || '-' }}
{{ roleList.find((item: any) => item.id === scope.row.organizationDoctorId)?.name || '-' }}
{{ visitType[scope.row.visitType] || '-' }}
{{ formatDate(scope.row.createDatetime) || '-' }}