fix(ui): 调整多处textarea组件的最小行数为2

- 统一将备注、详细地址、任务描述等多个textarea字段的minRows从3改为2
- 涉及多个业务模块,包括车辆、作业、数据记录、系统等
- 优化表单布局,提升视觉紧凑度和用户体验
- 调整内容不影响功能,仅样式属性的配置变更
This commit is contained in:
2026-08-13 17:02:11 +08:00
parent b64465a4c3
commit 8b35fcaa0d
15 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -88,7 +88,7 @@ export const option = {
label: '备注',
prop: 'remark',
type: 'textarea',
minRows: 3,
minRows: 2,
span: 18,
order: 360,
minWidth: 180,
+1 -1
View File
@@ -539,7 +539,7 @@ export const option = {
prop: 'attachmentsJson',
type: 'textarea',
formslot: true,
minRows: 3,
minRows: 2,
span: 24,
order: 260,
hide: true,
+1 -1
View File
@@ -676,7 +676,7 @@ export const option = {
label: '附件',
prop: 'attachmentsJson',
type: 'textarea',
minRows: 3,
minRows: 2,
span: 24,
hide: true,
display: false,