diff --git a/src/api/hjm/hjmCar/model/index.ts b/src/api/hjm/hjmCar/model/index.ts index 79f05f6..eef768d 100644 --- a/src/api/hjm/hjmCar/model/index.ts +++ b/src/api/hjm/hjmCar/model/index.ts @@ -24,6 +24,8 @@ export interface HjmCar { parentOrganizationAdmin?: string; // 车辆编号 code?: string; + // 车架号 + vinCode?: string; // 安装人员ID installerId?: number; // 安装时间 diff --git a/src/hjm/BestSellers.tsx b/src/hjm/BestSellers.tsx index e1d83a8..e58b323 100644 --- a/src/hjm/BestSellers.tsx +++ b/src/hjm/BestSellers.tsx @@ -29,6 +29,8 @@ const BestSellers = (props: any) => { className={'text-gray-700'}>{item.parentOrganization}
所属站点:{item.organization}
+
车架号:{item.vinCode}
保险状态:{item.insuranceStatus}
绑定操作员: { className={'text-gray-700'}>{item.parentOrganization}
保险状态:{item.insuranceStatus}
+
车架号:{item.vinCode}
绑定操作员:{item.driver}
diff --git a/src/user/car/BestSellers.tsx b/src/user/car/BestSellers.tsx index 2e0c2e3..b93ae82 100644 --- a/src/user/car/BestSellers.tsx +++ b/src/user/car/BestSellers.tsx @@ -29,6 +29,8 @@ const BestSellers = (props: any) => { className={'text-gray-700'}>{item.parentOrganization}
保险状态:{item.insuranceStatus}
+
车架号:{item.vinCode}
绑定操作员:{item.driver}