车辆服务交付条
围绕一辆车或一个车队完成监控、复盘、统计、导出和通知。
服务对象
{serviceObjectText}
服务时间
{serviceTimeText}
服务动作
{deliveryActions.map((item) => (
))}
{currentVehicleLabel ?
{currentVehicleLabel} : null}
{currentVehicleStatus ? (
当前车辆:{customerStatusTitle(currentVehicleStatus.title)}
) : null}
{currentVehicleConsistency ? (
一致性:{customerStatusTitle(currentVehicleConsistency.title) || `${currentVehicleConsistency.onlineSourceCount}/${currentVehicleConsistency.sourceCount} 数据通道`}
) : null}
{amapConfigured ? '高德地图就绪' : '高德地图待配置'}
{quickActions.map((item) => (
))}
{savedViews.length > 0 ? (
{savedViews.slice(0, 3).map((view) => {
const rangeText = view.dateFrom || view.dateTo ? `${view.dateFrom || '未指定'} 至 ${view.dateTo || '未指定'}` : '实时范围';
return (
);
})}
) : null}
{platformRelease ?
版本 {platformRelease} : null}