Commit 84c35dd84628f75250d24e7e464d1bf79b0e7990

Authored by 舒述军
1 parent 2ee855e8

备注限制字数

src/pages/order3/Common/ApproveModal/index.tsx
... ... @@ -39,7 +39,7 @@ export default function Add({ open, setOpen, callback }: Props) {
39 39 >
40 40 <Form form={form} labelCol={{ span: 6 }} wrapperCol={{ span: 15 }}>
41 41 <Form.Item label="备注" name="remark">
42   - <Input.TextArea placeholder="请输入备注" />
  42 + <Input.TextArea maxLength={512} autoSize={{minRows: 4}} showCount placeholder="请输入备注" />
43 43 </Form.Item>
44 44 <Form.Item label="附件" name="attachmentList" valuePropName="fidList">
45 45 <FeeweeUploadAttachment maxCount={8} listType="text">
... ...