12345678910111213141516171819 |
- import { FormConfig } from "/@/components/PageSearch";
- const searchFormConfig: FormConfig = {
- formItems: [
- {
- field: "open_timer",
- type: "date_picker",
- otherOptions: {
- type: "daterange",
- startProp: "open_start",
- endProp: "open_end",
- startPlaceholder: "开票起始时间",
- endPlaceholder: "开票结束时间"
- }
- }
- ]
- };
- export default searchFormConfig;
|