123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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<Inew>,
- multiple: false,
- placeholder: '请选择通讯录状态',
- },
- ],
- };
- export default searchConfig;
|