search.config.ts 429 B

12345678910111213141516171819
  1. import { FormConfig } from "/@/components/PageSearch";
  2. const searchFormConfig: FormConfig = {
  3. formItems: [
  4. {
  5. field: "open_timer",
  6. type: "date_picker",
  7. otherOptions: {
  8. type: "daterange",
  9. startProp: "open_start",
  10. endProp: "open_end",
  11. startPlaceholder: "开票起始时间",
  12. endPlaceholder: "开票结束时间"
  13. }
  14. }
  15. ]
  16. };
  17. export default searchFormConfig;