feat(platform): enrich history locations with plates

This commit is contained in:
lingniu
2026-07-03 23:14:40 +08:00
parent 55b069e27d
commit a644a6617c
2 changed files with 53 additions and 3 deletions

View File

@@ -15,9 +15,8 @@ type HistoryFilters = {
};
const defaultFilters: HistoryFilters = {
protocol: 'GB32960',
vin: 'LB9A32A24R0LS1426',
includeFields: true
includeFields: false
};
const defaultPage = { items: [], total: 0, limit: 10, offset: 0 };
@@ -94,7 +93,7 @@ export function History() {
return (
<div className="vp-page">
<PageHeader title="历史查询" description="位置历史和 RAW 帧历史的分页查询工作台" />
<PageHeader title="历史查询" description="按车辆查询位置历史和 RAW 帧历史,协议作为来源过滤和诊断维度" />
<Card bordered>
<Form initValues={filters} layout="horizontal" onSubmit={(values) => submit(values)}>
<Form.Input field="vin" label="VIN" placeholder="输入 VIN" style={{ width: 260 }} />