12345678910111213141516171819202122 |
- import { FormConfig } from "/@/components/PageSearch";
- const searchFormConfig: FormConfig = {
- formItems: [
- {
- field: "title",
- type: "input",
- placeholder: "企业名称"
- },
- {
- field: "company_title",
- type: "input",
- placeholder: "企业名称"
- },
- {
- field: "card_title",
- type: "input",
- placeholder: "卡类型名称"
- }
- ]
- };
- export default searchFormConfig;
|