Commit 1755d24fad77be51df33bb18f0b3c28aa2804cd7

Authored by ww
1 parent d59f6e09

fix: DEFECT-1199 任务中心名字长度限制

@@ -91,6 +91,7 @@ export const formSchemas: FormSchema[] = [ @@ -91,6 +91,7 @@ export const formSchemas: FormSchema[] = [
91 rules: [{ required: true, message: '请填写任务名称' }], 91 rules: [{ required: true, message: '请填写任务名称' }],
92 componentProps: { 92 componentProps: {
93 placeholder: '请输入任务名称', 93 placeholder: '请输入任务名称',
  94 + maxlength: 64,
94 }, 95 },
95 }, 96 },
96 { 97 {