Commit a869bf90287200e2cd1fa81de207ce46fd65ee78

Authored by loveumiko
1 parent 03af5313

fix: 修改规则链相关的

... ... @@ -30,7 +30,7 @@
30 30 const ruleTile = ref();
31 31
32 32 const [registerForm, { getFieldsValue, validate, setFieldsValue }] = useForm({
33   - labelWidth: 120,
  33 + labelWidth: 70,
34 34 schemas: formSchema,
35 35 showActionButtonGroup: false,
36 36 });
... ...
... ... @@ -9,6 +9,7 @@ export const formSchema: FormSchema[] = [
9 9 required: true,
10 10 componentProps: {
11 11 placeholder: '请输入名称',
  12 + max: 120,
12 13 },
13 14 },
14 15 {
... ...
... ... @@ -116,7 +116,7 @@
116 116 bordered: true,
117 117 showIndexColumn: false,
118 118 formConfig: {
119   - labelWidth: 70,
  119 + labelWidth: 120,
120 120 schemas: searchFormSchema,
121 121 },
122 122 fetchSetting: {
... ...