17 lines
673 B
TypeScript
17 lines
673 B
TypeScript
import type { FormTabRows } from '../../lib/render-rows';
|
|
import { transformRowsForMobile } from '../lib/utils';
|
|
|
|
export const id = 'insurance';
|
|
export const title = 'Страхование';
|
|
|
|
export const rows: FormTabRows = [
|
|
[['tbxLeaseObjectYear', 'selectLeaseObjectUseFor', 'selectLegalClientRegion']],
|
|
[['selectEngineType', 'tbxInsFranchise', 'selectLegalClientTown']],
|
|
[['selectLeaseObjectCategory', 'tbxMileage']],
|
|
[['tbxLeaseObjectMotorPower', 'cbxWithTrailer', 'selectGPSBrand']],
|
|
[['tbxEngineVolume', 'cbxInsDecentral', 'selectGPSModel']],
|
|
[['selectLeasingWithoutKasko', 'selectInsNSIB']],
|
|
];
|
|
|
|
export const mobileRows = transformRowsForMobile(rows);
|