2022-06-14 13:28:07 +03:00

16 lines
569 B
TypeScript

import type { FormComponentConfig } from '../../lib/renderFormComponent';
const config: FormComponentConfig = {
id: 'insurance',
title: 'Страхование',
rows: [
[['tbxLeaseObjectYear', 'selectLeaseObjectUseFor', 'selectLegalClientRegion']],
[['selectEngineType', 'tbxInsFranchise', 'selectLegalClientTown']],
[['selectLeaseObjectCategory', 'tbxMileage', 'tbxINNForCalc']],
[['tbxLeaseObjectMotorPower', 'cbxWithTrailer', 'selectGPSBrand']],
[['tbxEngineVolume', 'cbxInsDecentral', 'selectGPSModel']],
],
};
export default config;