Commit b423a055c4c93fa9a4995317abb22128427e6dee

Authored by fengtao
1 parent 25868f8c

pref:优化账号管理 备注字段不能超过255,否则服务端报错

... ... @@ -224,6 +224,10 @@ export const accountFormSchema: FormSchema[] = [
224 224 label: '备注',
225 225 component: 'InputTextArea',
226 226 colProps: { span: 24 },
  227 + componentProps: {
  228 + maxLength: 255,
  229 + placeholder: '请输入备注',
  230 + },
227 231 },
228 232 {
229 233 field: 'organizationIds',
... ...