search.config.ts 543 B

1234567891011121314151617181920212223242526
  1. import { FormConfig } from "/@/components/PageSearch";
  2. // import { INV_OPEN_STATUS } from "/@/utils/details/inv-open";
  3. const searchFormConfig: FormConfig = {
  4. colLayout: { span: 8 },
  5. formItems: [
  6. {
  7. field: "status",
  8. type: "input",
  9. placeholder: "发票申请状态",
  10. options: []
  11. },
  12. {
  13. field: "inv_type",
  14. type: "select",
  15. placeholder: "发票类型"
  16. },
  17. {
  18. field: "customer",
  19. type: "input",
  20. placeholder: "客户名称"
  21. }
  22. ]
  23. };
  24. export default searchFormConfig;