12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import { FormConfig } from "/@/components/PageSearch";
- import { statusList } from "/@/utils/status";
- import { shareTypes } from "./configs";
- const searchFormConfig: FormConfig = {
- formItems: [
- {
- field: "source_nickname",
- type: "input",
- placeholder: "数据源用户"
- },
- {
- field: "source_group_title",
- type: "input",
- placeholder: "数据源用户组"
- },
- {
- field: "nickname",
- type: "input",
- placeholder: "数据共享用户"
- },
- {
- field: "group_title",
- type: "input",
- placeholder: "数据共享用户组",
- options: shareTypes
- },
- // {
- // field: "status",
- // type: "select",
- // placeholder: "当前状态",
- // options: statusList
- // },
- {
- field: "type",
- type: "select",
- placeholder: "共享权限",
- options: shareTypes
- },
- ]
- };
- export default searchFormConfig;
|