feat(hjmCar): 添加车架号字段展示与数据支持

在多个页面组件中新增了车架号(vinCode)的展示字段,
并在对应的 API 数据模型中增加了 vinCode 属性定义。
涉及文件包括 BestSellers.tsx 多个路径以及 hjmCar 模型文件。
This commit is contained in:
2025-09-20 15:39:10 +08:00
parent 8627d45c25
commit 60a3946884
4 changed files with 8 additions and 0 deletions

View File

@@ -24,6 +24,8 @@ export interface HjmCar {
parentOrganizationAdmin?: string; parentOrganizationAdmin?: string;
// 车辆编号 // 车辆编号
code?: string; code?: string;
// 车架号
vinCode?: string;
// 安装人员ID // 安装人员ID
installerId?: number; installerId?: number;
// 安装时间 // 安装时间

View File

@@ -29,6 +29,8 @@ const BestSellers = (props: any) => {
className={'text-gray-700'}>{item.parentOrganization}</span></div> className={'text-gray-700'}>{item.parentOrganization}</span></div>
<div className={'flex text-xs text-gray-500'}><span <div className={'flex text-xs text-gray-500'}><span
className={'text-gray-700'}>{item.organization}</span></div> className={'text-gray-700'}>{item.organization}</span></div>
<div className={'flex text-xs text-gray-500'}><span
className={'text-gray-700'}>{item.vinCode}</span></div>
<div className={'flex text-xs text-gray-500'}><span className={'text-green-600'}>{item.insuranceStatus}</span> <div className={'flex text-xs text-gray-500'}><span className={'text-green-600'}>{item.insuranceStatus}</span>
</div> </div>
<div className={'flex text-xs text-gray-500'}><span <div className={'flex text-xs text-gray-500'}><span

View File

@@ -27,6 +27,8 @@ const BestSellers = (props: any) => {
className={'text-gray-700'}>{item.parentOrganization}</span></div> className={'text-gray-700'}>{item.parentOrganization}</span></div>
<div className={'flex text-xs text-gray-500'}><span className={'text-green-600'}>{item.insuranceStatus}</span> <div className={'flex text-xs text-gray-500'}><span className={'text-green-600'}>{item.insuranceStatus}</span>
</div> </div>
<div className={'flex text-xs text-gray-500'}><span
className={'text-gray-700'}>{item.vinCode}</span></div>
<div className={'flex text-xs text-gray-500'}><span <div className={'flex text-xs text-gray-500'}><span
className={'text-gray-700'}>{item.driver}</span></div> className={'text-gray-700'}>{item.driver}</span></div>
</Space> </Space>

View File

@@ -29,6 +29,8 @@ const BestSellers = (props: any) => {
className={'text-gray-700'}>{item.parentOrganization}</span></div> className={'text-gray-700'}>{item.parentOrganization}</span></div>
<div className={'flex text-xs text-gray-500'}><span className={'text-green-600'}>{item.insuranceStatus}</span> <div className={'flex text-xs text-gray-500'}><span className={'text-green-600'}>{item.insuranceStatus}</span>
</div> </div>
<div className={'flex text-xs text-gray-500'}><span
className={'text-gray-700'}>{item.vinCode}</span></div>
<div className={'flex text-xs text-gray-500'}><span <div className={'flex text-xs text-gray-500'}><span
className={'text-gray-700'}>{item.driver}</span></div> className={'text-gray-700'}>{item.driver}</span></div>
</Space> </Space>