fix(ui): 调整多处textarea组件的最小行数为2
- 统一将备注、详细地址、任务描述等多个textarea字段的minRows从3改为2 - 涉及多个业务模块,包括车辆、作业、数据记录、系统等 - 优化表单布局,提升视觉紧凑度和用户体验 - 调整内容不影响功能,仅样式属性的配置变更
This commit is contained in:
@@ -88,7 +88,7 @@ export const option = {
|
||||
label: '备注',
|
||||
prop: 'remark',
|
||||
type: 'textarea',
|
||||
minRows: 3,
|
||||
minRows: 2,
|
||||
span: 18,
|
||||
order: 360,
|
||||
minWidth: 180,
|
||||
|
||||
@@ -539,7 +539,7 @@ export const option = {
|
||||
prop: 'attachmentsJson',
|
||||
type: 'textarea',
|
||||
formslot: true,
|
||||
minRows: 3,
|
||||
minRows: 2,
|
||||
span: 24,
|
||||
order: 260,
|
||||
hide: true,
|
||||
|
||||
@@ -676,7 +676,7 @@ export const option = {
|
||||
label: '附件',
|
||||
prop: 'attachmentsJson',
|
||||
type: 'textarea',
|
||||
minRows: 3,
|
||||
minRows: 2,
|
||||
span: 24,
|
||||
hide: true,
|
||||
display: false,
|
||||
|
||||
Reference in New Issue
Block a user