Commit 49b81cda1c5f5eb6b7a437788ea95891b5b8509b

Authored by fengwotao
1 parent a337a842

fix: DEFECT-1592 限制邮件主题长度不超过64

... ... @@ -60,7 +60,7 @@
60 60 span: 12,
61 61 },
62 62 componentProps: {
63   - maxLength: 255,
  63 + maxLength: 64,
64 64 placeholder: '请输入邮件主题',
65 65 },
66 66 },
... ... @@ -72,7 +72,7 @@
72 72 colProps: {
73 73 span: 12,
74 74 },
75   - rules: [...emailRule, { required: true ,message:'主送人不能为空'}],
  75 + rules: [...emailRule, { required: true, message: '主送人不能为空' }],
76 76 componentProps: {
77 77 maxLength: 255,
78 78 placeholder: '请输入主送',
... ...