|
|
@@ -231,7 +231,7 @@ export default function RecordFastSleep(props: { data: any, type: string, delSuc
|
|
|
sleepDuration = getDuration(record.sleep)
|
|
|
showSleep = true
|
|
|
}
|
|
|
- return <View style={{ display: 'flex', flexDirection: 'row', alignItems: 'center' }}>
|
|
|
+ return <View className="fast_sleep_item">
|
|
|
{
|
|
|
rings()
|
|
|
}
|
|
|
@@ -250,12 +250,12 @@ export default function RecordFastSleep(props: { data: any, type: string, delSuc
|
|
|
}
|
|
|
</View>
|
|
|
<Image className="arrow1" src={require('@/assets/images/arrow.png')} />
|
|
|
+ <Text className='recordTime'>{TimeFormatter.formatTimestamp(props.data.last_real_check_time)}</Text>
|
|
|
</View>
|
|
|
}
|
|
|
|
|
|
|
|
|
- return <View style={{ position: 'relative' }}>
|
|
|
- <Box header={header()}>
|
|
|
+ return <Box header={header()}>
|
|
|
<RecordItem canDel={record.status == 'COMPLETED'} delete={del}
|
|
|
onClick={() => { showDetail() }}
|
|
|
>{recordDetail()}
|
|
|
@@ -268,6 +268,4 @@ export default function RecordFastSleep(props: { data: any, type: string, delSuc
|
|
|
}
|
|
|
|
|
|
</Box>
|
|
|
- <Text className='recordTime'>{TimeFormatter.formatTimestamp(props.data.last_real_check_time)}</Text>
|
|
|
- </View>
|
|
|
}
|