search.config.ts 435 B

12345678910111213141516171819202122
  1. import { FormConfig } from "/@/components/PageSearch";
  2. const searchFormConfig: FormConfig = {
  3. formItems: [
  4. {
  5. field: "title",
  6. type: "input",
  7. placeholder: "企业名称"
  8. },
  9. {
  10. field: "company_title",
  11. type: "input",
  12. placeholder: "企业名称"
  13. },
  14. {
  15. field: "card_title",
  16. type: "input",
  17. placeholder: "卡类型名称"
  18. }
  19. ]
  20. };
  21. export default searchFormConfig;