14 lines
561 B
TypeScript
14 lines
561 B
TypeScript
import type { FormTabRows } from '../../lib/render-rows';
|
|
|
|
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']],
|
|
];
|