We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
假设有一个新增接口,入参格式为:
{ "name": "姓名", "roles": [{ title: '角色名1', describe: '描述' }], "dept": { name: ”部门名“, filed1: "其他字段" } }
在使用BasicForm时, 该如何配置?
能否按照如下配置,或者其他的方式(希望提供个例子)来实现:
export const connectionFormSchema = (): FormSchema[] => { return [ { field: 'name', label: 'name', component: 'Input', }, { field: 'dept.name', label: '部门名', component: 'Input', }, { field: 'dept.filed1', label: '其他字段', component: 'Input', }, ]; };
The text was updated successfully, but these errors were encountered:
#591 已经调整了
Sorry, something went wrong.
大神,方便给个示例参考吗
#591 已经调整了 大神,方便给个示例参考吗
请问你解决这个问题了吗?
No branches or pull requests
假设有一个新增接口,入参格式为:
在使用BasicForm时, 该如何配置?
能否按照如下配置,或者其他的方式(希望提供个例子)来实现:
The text was updated successfully, but these errors were encountered: