search.config.ts 738 B

123456789101112131415161718192021222324252627282930313233
  1. import { FormConfig } from "/@/components/PageSearch";
  2. import { goodTypeOptions } from "/@/utils/status";
  3. const searchFormConfig: FormConfig = {
  4. formItems: [
  5. {
  6. field: "timer",
  7. type: "date_picker",
  8. span: 7,
  9. label: '创建时间',
  10. otherOptions: {
  11. type: "daterange",
  12. startProp: "start",
  13. endProp: "end",
  14. startPlaceholder: "开始时间",
  15. endPlaceholder: "结束时间"
  16. }
  17. },
  18. // {
  19. // field: 'TODO',
  20. // type: 'business-query',
  21. // options: goodTypeOptions,
  22. // placeholder: '业务公司'
  23. // },
  24. {
  25. field: 'skuCode',
  26. type: 'input',
  27. placeholder: '商品编码'
  28. },
  29. ]
  30. };
  31. export default searchFormConfig;