提问前先看看: https://github.com/ryanhanwu/How-To-Ask-Questions-The-Smart-Way/blob/main/README-zh_CN.md ### 🧐 问题描述 `ProDescriptions`中`valueType`为`textarea`时编辑模式的`input`大小不正确,编辑模式下的`<TextArea />`组件能够正确接受`rows`参数作,但是当设置`width: 100%`的时候,由于外层包裹了无长度的`div`,造成样式无变化。此外,使用`renderFormItem`进行自定义也是一样的。 ### 💻 示例代码 现有的`columns`中对应字段的定义 ``` { label: '个人简介', dataIndex: 'introduction', valueType: 'textarea', span: 2, fieldProps: { rows: 10, style: { minWidth: '100%', width: '100%', }, }, } ``` ### 🚑 其他信息 <img width="1341" height="423" alt="Image" src="https://github.com/user-attachments/assets/27d60ee8-4af7-49d9-86b0-5254a359da03" /> <img width="1328" height="353" alt="Image" src="https://github.com/user-attachments/assets/812acb46-d899-497f-8ec0-2adb44a591b3" />