1234567891011121314151617181920212223242526 |
- import { FormConfig } from "/@/components/PageSearch";
- // import { INV_OPEN_STATUS } from "/@/utils/details/inv-open";
- const searchFormConfig: FormConfig = {
- colLayout: { span: 8 },
- formItems: [
- {
- field: "status",
- type: "input",
- placeholder: "发票申请状态",
- options: []
- },
- {
- field: "inv_type",
- type: "select",
- placeholder: "发票类型"
- },
- {
- field: "customer",
- type: "input",
- placeholder: "客户名称"
- }
- ]
- };
- export default searchFormConfig;
|