feat(order): 增加门店订单页收货信息一键导航功能
- 订单卡片收货信息区域添加点击事件,实现一键导航至收货地址 - 新增 handleNavigate 方法,利用微信小程序内置地图 API 实现导航 - 导航功能支持坐标有效性检查,坐标无效时显示错误提示 - 订单详情页“过期时间”字段改为“送达时间”并显示对应数据 - 保留“发货时间”字段,确保送达时间与发货时间分别展示 - 确认代码构建和类型检查无新增错误
This commit is contained in:
@@ -405,12 +405,6 @@ const OrderDetailPage: React.FC = () => {
|
||||
<Text className='text-xs text-gray-600'>{formatTime(order.deliveryTime)}</Text>
|
||||
</View>
|
||||
)}
|
||||
{order.expirationTime && (
|
||||
<View className='flex justify-between'>
|
||||
<Text className='text-xs text-gray-400'>过期时间</Text>
|
||||
<Text className='text-xs text-gray-600'>{formatTime(order.expirationTime)}</Text>
|
||||
</View>
|
||||
)}
|
||||
{order.comments && (
|
||||
<View className='flex justify-start'>
|
||||
<Text className='text-xs text-gray-400 mr-2'>备注</Text>
|
||||
|
||||
Reference in New Issue
Block a user