search.config.ts 354 B

123456789101112131415161718
  1. import { FormConfig } from "/@/components/PageSearch";
  2. const searchFormConfig: FormConfig = {
  3. formItems: [
  4. {
  5. field: "invoice_title",
  6. type: "input",
  7. placeholder: "发票抬头名称"
  8. },
  9. {
  10. field: "invoice_code",
  11. type: "input",
  12. placeholder: "纳税识别号"
  13. }
  14. ]
  15. };
  16. export default searchFormConfig;