Jelajahi Sumber

fix(order-detail): 修复打卡日历统计区域的Taro适配问题

- 为打卡日历模态框中的统计项View添加flex flex-col类
- 确保已打卡、未打卡、出勤率统计项垂直排列显示
- 保持与页面其他区域一致的Taro适配规范

🤖 Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
yourname 3 minggu lalu
induk
melakukan
65ea4d3ab6

+ 3 - 3
mini-ui-packages/yongren-order-management-ui/src/pages/OrderDetail/OrderDetail.tsx

@@ -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>