67 lines
1.9 KiB
JavaScript
67 lines
1.9 KiB
JavaScript
export const DEFAULT_PROJECT_CONFIG = {
|
||
'ССП/РФ': {
|
||
type: 'multiselect',
|
||
options: [],
|
||
placeholder: 'Выберите ССП/РФ',
|
||
defaultValue: null,
|
||
required_field: true,
|
||
},
|
||
Год: {
|
||
type: 'number',
|
||
placeholder: 'Введите год',
|
||
defaultValue: null,
|
||
min: 0,
|
||
step: 1,
|
||
required_field: false,
|
||
},
|
||
'Тип проекта развития': {
|
||
type: 'multiselect',
|
||
options: ['Открытие ВСП', 'Закрытие ВСП', 'Переезд ВСП', 'Реновация РФ', 'Открытие УРМ'],
|
||
placeholder: 'Выберите тип проекта',
|
||
defaultValue: null,
|
||
required_field: false,
|
||
},
|
||
'Название проекта': {
|
||
type: 'text',
|
||
placeholder: 'Введите название проекта',
|
||
defaultValue: null,
|
||
required_field: true,
|
||
},
|
||
'Формат ВСП': {
|
||
type: 'multiselect',
|
||
options: ['Фланговый', 'Типовой', 'Розничный', 'МСБ', 'Лёгкий', 'Мини', 'Розничный-киоск', 'МБО', 'Офис самообслуживания', 'Другое'],
|
||
placeholder: 'Выберите формат ВСП',
|
||
defaultValue: null,
|
||
required_field: false,
|
||
},
|
||
'Адрес объекта': {
|
||
type: 'text',
|
||
placeholder: 'Введите адрес объекта',
|
||
defaultValue: '',
|
||
required_field: false,
|
||
},
|
||
'Целевая численность, чел.': {
|
||
type: 'number',
|
||
placeholder: 'Введите число',
|
||
defaultValue: 0,
|
||
min: 0,
|
||
step: 1,
|
||
required_field: false,
|
||
},
|
||
'Тип размещения': {
|
||
type: 'multiselect',
|
||
options: ['Собственность', 'Аренда', 'Субаренда'],
|
||
placeholder: 'Выберите тип размещения',
|
||
defaultValue: null,
|
||
required_field: false,
|
||
},
|
||
'Площадь размещения, м2': {
|
||
type: 'number',
|
||
placeholder: 'Введите число',
|
||
defaultValue: 0,
|
||
min: 0,
|
||
step: 1,
|
||
required_field: false,
|
||
},
|
||
};
|