feat(platform): align dashboard copy with vehicle service delivery
This commit is contained in:
@@ -1330,7 +1330,7 @@ export function Dashboard({
|
||||
const highPriorityLookupKey = highPriorityLookup?.key;
|
||||
const highPriorityFilters = highPriorityEvidenceFilters;
|
||||
const lines = [
|
||||
'【车辆服务中台运营交接摘要】',
|
||||
'【车辆服务中台客户交付摘要】',
|
||||
`在线车辆:${formatCount(serviceSummary?.onlineVehicles ?? summary?.onlineVehicles)} / ${formatCount(serviceSummary?.totalVehicles)}`,
|
||||
`今日活跃:${formatCount(summary?.activeToday)}`,
|
||||
`今日帧量:${formatCount(summary?.frameToday)}`,
|
||||
@@ -1348,7 +1348,7 @@ export function Dashboard({
|
||||
`统计查询:${appURL(buildAppHash({ page: 'mileage', keyword: highPriorityLookupKey, protocol: highPriorityIssue?.protocol }))}`,
|
||||
`车辆服务:${appURL(buildAppHash({ page: 'detail', keyword: highPriorityLookupKey, protocol: highPriorityIssue?.protocol }))}`
|
||||
].filter(Boolean);
|
||||
copyText(lines.join('\n'), '运营交接摘要');
|
||||
copyText(lines.join('\n'), '客户交付摘要');
|
||||
};
|
||||
const copyScenarioBlueprint = () => {
|
||||
const lines = [
|
||||
@@ -3635,7 +3635,7 @@ export function Dashboard({
|
||||
<div className="vp-vehicle-priority-queue">
|
||||
<div className="vp-vehicle-priority-queue-head">
|
||||
<div>
|
||||
<Typography.Text strong>车辆运营优先级队列</Typography.Text>
|
||||
<Typography.Text strong>车辆服务优先级队列</Typography.Text>
|
||||
<Typography.Text type="secondary">先处理影响客户看车、查轨迹、算里程和收通知的问题车辆。</Typography.Text>
|
||||
</div>
|
||||
<Tag color="blue">按车辆问题排序</Tag>
|
||||
@@ -3647,7 +3647,7 @@ export function Dashboard({
|
||||
type="button"
|
||||
className="vp-vehicle-priority-queue-item"
|
||||
onClick={item.onClick}
|
||||
aria-label={`车辆运营优先级队列 ${item.title} ${item.value} ${item.action}`}
|
||||
aria-label={`车辆服务优先级队列 ${item.title} ${item.value} ${item.action}`}
|
||||
>
|
||||
<Tag color={item.color}>{item.title}</Tag>
|
||||
<strong>{item.value}</strong>
|
||||
@@ -3668,7 +3668,7 @@ export function Dashboard({
|
||||
type="button"
|
||||
className="vp-fleet-next-action"
|
||||
onClick={item.onClick}
|
||||
aria-label={`车辆运营建议 ${item.title} ${item.action}`}
|
||||
aria-label={`车辆服务建议 ${item.title} ${item.action}`}
|
||||
>
|
||||
<Tag color={item.color}>{item.level}</Tag>
|
||||
<strong>{item.title}</strong>
|
||||
@@ -4103,7 +4103,7 @@ export function Dashboard({
|
||||
<Button size="small" theme="solid" type="primary" onClick={() => onOpenVehicles({ online: 'online' })}>查看在线车辆</Button>
|
||||
<Button size="small" theme="light" type="primary" onClick={copyCustomerServiceGuide}>复制客户服务说明</Button>
|
||||
<Button size="small" theme="light" type="primary" onClick={exportDashboardSnapshot}>导出驾驶舱 CSV</Button>
|
||||
<Button size="small" theme="light" type="tertiary" onClick={copyOperationsHandoff}>复制运营交接摘要</Button>
|
||||
<Button size="small" theme="light" type="tertiary" onClick={copyOperationsHandoff}>复制客户交付摘要</Button>
|
||||
</Space>
|
||||
</div>
|
||||
<div className="vp-service-entry-grid">
|
||||
@@ -4132,7 +4132,7 @@ export function Dashboard({
|
||||
<small>来源覆盖、地图配置、告警预览和实时证据默认收起,客户主流程先看车辆监控、轨迹、统计、告警和导出。</small>
|
||||
</summary>
|
||||
<div className="vp-dashboard-evidence-body">
|
||||
<Card bordered title="地图运营能力" style={{ marginBottom: 16 }}>
|
||||
<Card bordered title="地图监控能力" style={{ marginBottom: 16 }}>
|
||||
<div className="vp-map-ops-board">
|
||||
<div className="vp-map-ops-readiness">
|
||||
{mapReadiness.map((item) => (
|
||||
@@ -4193,7 +4193,7 @@ export function Dashboard({
|
||||
</div>
|
||||
</Card>
|
||||
) : null}
|
||||
<Card bordered title="车辆运营工作台" style={{ marginBottom: 16 }}>
|
||||
<Card bordered title="车辆服务工作台" style={{ marginBottom: 16 }}>
|
||||
<div className="vp-workbench-grid">
|
||||
{operationWorkbench.map((item) => (
|
||||
<div key={item.title} className="vp-workbench-item">
|
||||
@@ -4317,7 +4317,7 @@ export function Dashboard({
|
||||
</div>
|
||||
</Card>
|
||||
) : null}
|
||||
<Card bordered title="车辆运营能力矩阵" style={{ marginBottom: 16 }}>
|
||||
<Card bordered title="车辆服务能力矩阵" style={{ marginBottom: 16 }}>
|
||||
<div className="vp-capability-grid">
|
||||
{capabilities.map((item) => (
|
||||
<div key={item.title} className="vp-capability-item">
|
||||
|
||||
Reference in New Issue
Block a user