interface Inew { label: string; value: string; } const searchConfig = { pageName: 'ntlo', pageListParams: { industryType: '2', belongsDeptIds: '', }, formItems: [ { label: '姓名', prop: 'contactName', type: 'input', placeholder: '请输入联络员姓名', }, { label: '部门', prop: 'belongsDept', type: 'input', placeholder: '请输入联络员部门', }, { label: '联系电话', prop: 'contactNumber', type: 'input', placeholder: '请输入联系电话', }, { label: '通讯录状态', prop: 'abStatus', type: 'select', options: [] as Array, multiple: false, placeholder: '请选择通讯录状态', }, ], }; export default searchConfig;