|
|
@@ -866,15 +866,15 @@ const OrderDetail: React.FC = () => {
|
|
|
<View className="bg-blue-50 rounded-lg p-3 mb-4">
|
|
|
<Text className="font-medium text-blue-700 mb-1">本月打卡统计</Text>
|
|
|
<View className="flex justify-between">
|
|
|
- <View>
|
|
|
+ <View className="flex flex-col">
|
|
|
<Text className="text-xs text-blue-600">已打卡</Text>
|
|
|
<Text className="text-lg font-bold text-blue-800">{getCheckinCalendarData().checkinCount}天</Text>
|
|
|
</View>
|
|
|
- <View>
|
|
|
+ <View className="flex flex-col">
|
|
|
<Text className="text-xs text-blue-600">未打卡</Text>
|
|
|
<Text className="text-lg font-bold text-blue-800">{getCheckinCalendarData().missedCount}天</Text>
|
|
|
</View>
|
|
|
- <View>
|
|
|
+ <View className="flex flex-col">
|
|
|
<Text className="text-xs text-blue-600">出勤率</Text>
|
|
|
<Text className="text-lg font-bold text-blue-800">{getCheckinCalendarData().attendanceRate}%</Text>
|
|
|
</View>
|