feat(system): 优化配置组件的样式和功能

- 调整表单布局,设置宽度为 500px,栏数为 24
- 在标题、键名和键值字段的表单中添加占位符
This commit is contained in:
1638245306
2025-03-14 16:42:04 +08:00
parent ac22e47883
commit 8706de5ef4

View File

@@ -28,6 +28,14 @@ const createCrudOptions = function ({ crudExpose, context }: CreateCrudOptionsPr
mode: "row",
activeDefault:true
},
form:{
wrapper:{
width:"500px"
},
col:{
span:24
}
},
toolbar:{
show:false
},
@@ -42,6 +50,9 @@ const createCrudOptions = function ({ crudExpose, context }: CreateCrudOptionsPr
title: {
title: "标题",
form:{
component:{
placeholder:"请输入标题"
},
rules:[{
required: true,
message: '必须填写',
@@ -51,6 +62,9 @@ const createCrudOptions = function ({ crudExpose, context }: CreateCrudOptionsPr
key: {
title: "键名",
form:{
component:{
placeholder:"请输入键名"
},
rules:[{
required: true,
message: '必须填写',
@@ -60,6 +74,9 @@ const createCrudOptions = function ({ crudExpose, context }: CreateCrudOptionsPr
value: {
title: "键值",
form:{
component:{
placeholder:"请输入键值"
},
rules:[{
required: true,
message: '必须填写',