|
|
@@ -72,7 +72,7 @@ const OrderCard = ({ order, onViewDetail }) => {
|
|
|
<View className="flex items-center mb-[28rpx] p-[20rpx] bg-primary/5 rounded-[16rpx] border border-primary/10">
|
|
|
<View className="flex-1">
|
|
|
<Text className={`text-[24rpx] ${isCharterOrder ? 'text-gray-300' : 'text-gray-500'}`}>出发</Text>
|
|
|
- <Text className={`block text-[30rpx] font-semibold leading-[1.3] ${
|
|
|
+ <Text className={`block text-[30rpx] font-semibold leading-[1.4] break-words ${
|
|
|
isCharterOrder ? 'text-white' : 'text-gray-900'
|
|
|
}`}>
|
|
|
{order.routeSnapshot?.pickupPoint}
|
|
|
@@ -85,7 +85,7 @@ const OrderCard = ({ order, onViewDetail }) => {
|
|
|
</Text>
|
|
|
<View className="flex-1">
|
|
|
<Text className={`text-[24rpx] ${isCharterOrder ? 'text-gray-300' : 'text-gray-500'}`}>到达</Text>
|
|
|
- <Text className={`block text-[30rpx] font-semibold leading-[1.3] ${
|
|
|
+ <Text className={`block text-[30rpx] font-semibold leading-[1.4] break-words ${
|
|
|
isCharterOrder ? 'text-white' : 'text-gray-900'
|
|
|
}`}>
|
|
|
{order.routeSnapshot?.dropoffPoint}
|