label 怎么显示在左边-columns 中的一个 label在左边 其他的都正常是垂直的 #9560
starplatinum3
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
label 怎么显示在左边
columns 中的一个 label在左边 其他的都正常是垂直的
const columns: ProFormColumnsType[] = [
{
title: '用户名',
dataIndex: 'username',
valueType: 'text',
formItemProps: {
rules: [{ required: true, message: '请输入用户名' }],
},
},
{
title: '邮箱',
dataIndex: 'email',
valueType: 'text',
formItemProps: {
rules: [{ required: true, message: '请输入邮箱' }],
},
},
{
title: '手机号',
dataIndex: 'phone',
valueType: 'text',
},
{
title: '描述',
dataIndex: 'description',
valueType: 'textarea',
},
];
不行
Beta Was this translation helpful? Give feedback.
All reactions