search.nonIndustry.config.ts 734 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. interface Inew {
  2. label: string;
  3. value: string;
  4. }
  5. const searchConfig = {
  6. pageName: 'ntlo',
  7. pageListParams: {
  8. industryType: '2',
  9. belongsDeptIds: '',
  10. },
  11. formItems: [
  12. {
  13. label: '姓名',
  14. prop: 'contactName',
  15. type: 'input',
  16. placeholder: '请输入联络员姓名',
  17. },
  18. {
  19. label: '部门',
  20. prop: 'belongsDept',
  21. type: 'input',
  22. placeholder: '请输入联络员部门',
  23. },
  24. {
  25. label: '联系电话',
  26. prop: 'contactNumber',
  27. type: 'input',
  28. placeholder: '请输入联系电话',
  29. },
  30. {
  31. label: '通讯录状态',
  32. prop: 'abStatus',
  33. type: 'select',
  34. options: [] as Array<Inew>,
  35. multiple: false,
  36. placeholder: '请选择通讯录状态',
  37. },
  38. ],
  39. };
  40. export default searchConfig;