feat(hjmCar): 添加车架号字段展示与数据支持
在多个页面组件中新增了车架号(vinCode)的展示字段, 并在对应的 API 数据模型中增加了 vinCode 属性定义。 涉及文件包括 BestSellers.tsx 多个路径以及 hjmCar 模型文件。
This commit is contained in:
@@ -24,6 +24,8 @@ export interface HjmCar {
|
||||
parentOrganizationAdmin?: string;
|
||||
// 车辆编号
|
||||
code?: string;
|
||||
// 车架号
|
||||
vinCode?: string;
|
||||
// 安装人员ID
|
||||
installerId?: number;
|
||||
// 安装时间
|
||||
|
||||
@@ -29,6 +29,8 @@ const BestSellers = (props: any) => {
|
||||
className={'text-gray-700'}>{item.parentOrganization}</span></div>
|
||||
<div className={'flex text-xs text-gray-500'}>所属站点:<span
|
||||
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>
|
||||
<div className={'flex text-xs text-gray-500'}>绑定操作员:<span
|
||||
|
||||
@@ -27,6 +27,8 @@ const BestSellers = (props: any) => {
|
||||
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>
|
||||
<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-gray-700'}>{item.driver}</span></div>
|
||||
</Space>
|
||||
|
||||
@@ -29,6 +29,8 @@ const BestSellers = (props: any) => {
|
||||
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>
|
||||
<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-gray-700'}>{item.driver}</span></div>
|
||||
</Space>
|
||||
|
||||
Reference in New Issue
Block a user