123456789101112131415161718 |
- import { FormConfig } from "/@/components/PageSearch";
- const searchFormConfig: FormConfig = {
- formItems: [
- {
- field: "invoice_title",
- type: "input",
- placeholder: "发票抬头名称"
- },
- {
- field: "invoice_code",
- type: "input",
- placeholder: "纳税识别号"
- }
- ]
- };
- export default searchFormConfig;
|