feat(exc): complete monitoring details
This commit is contained in:
@@ -157,6 +157,9 @@ function ExcDemandsPage() {
|
||||
{ label: '报价截止', value: formatTime(demand?.quote_deadline) },
|
||||
{ label: '需求时间', value: formatTime(demand?.required_at) },
|
||||
{ label: '匹配时间', value: formatTime(demand?.matched_at) },
|
||||
{ label: '纬度', value: demand?.lat ?? '—' },
|
||||
{ label: '经度', value: demand?.lng ?? '—' },
|
||||
{ label: '时长(分钟)', value: demand?.duration ?? '—' },
|
||||
]}
|
||||
jsonBlocks={[
|
||||
{ label: '关联服务', value: demand?.related_services?.length ? demand.related_services : null },
|
||||
|
||||
@@ -175,6 +175,7 @@ function ExcOrdersPage() {
|
||||
{ label: '支付时间', value: formatTime(order?.paid_at) },
|
||||
{ label: '结算时间', value: formatTime(order?.settled_at) },
|
||||
{ label: '放款时间', value: formatTime(order?.escrow_released_at) },
|
||||
{ label: '取消费截止', value: formatTime(order?.cancellation_fee_due_date) },
|
||||
{ label: '买家备注', value: order?.buyer_remarks ?? '—' },
|
||||
]}
|
||||
jsonBlocks={[
|
||||
|
||||
@@ -161,6 +161,9 @@ function ExcProvidersPage() {
|
||||
{ label: '上线时间', value: formatTime(provider?.online_at) },
|
||||
{ label: '离线时间', value: formatTime(provider?.offline_at) },
|
||||
{ label: '最近定位', value: formatTime(provider?.last_location_at) },
|
||||
{ label: '纬度', value: provider?.last_lat ?? '—' },
|
||||
{ label: '经度', value: provider?.last_lng ?? '—' },
|
||||
{ label: '定位精度(米)', value: provider?.location_accuracy_m ?? '—' },
|
||||
]}
|
||||
jsonBlocks={[
|
||||
{ label: '派单设置', value: provider?.dispatch_setting ?? null },
|
||||
|
||||
Reference in New Issue
Block a user