Commit 99c6dbbe authored by 卢均锐's avatar 卢均锐

fix: [12485] 采购竞价-新增-输入框限制

parent 8e027563
...@@ -146,7 +146,7 @@ const BidRequirement: React.FC<Iprops> = (props: any) => { ...@@ -146,7 +146,7 @@ const BidRequirement: React.FC<Iprops> = (props: any) => {
name="demand" name="demand"
rules={[{ required: true, message: '请输入报名要求' }]} rules={[{ required: true, message: '请输入报名要求' }]}
> >
<TextArea rows={3} maxLength={200} placeholder="最长200个字符,100个汉字" /> <TextArea rows={3} maxLength={100} placeholder="最长200个字符,100个汉字" />
</Form.Item> </Form.Item>
<Form.Item <Form.Item
label="报名要求附件" label="报名要求附件"
......
...@@ -143,7 +143,7 @@ const Condition: React.FC<Iprops> = (props: any) => { ...@@ -143,7 +143,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
name="offer" name="offer"
rules={[{ required: true, message: '请输入报价要求' }]} rules={[{ required: true, message: '请输入报价要求' }]}
> >
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" /> <TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item> </Form.Item>
<Form.Item <Form.Item
label="付款方式" label="付款方式"
...@@ -151,7 +151,7 @@ const Condition: React.FC<Iprops> = (props: any) => { ...@@ -151,7 +151,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入付款方式' }]} rules={[{ required: true, message: '请输入付款方式' }]}
> >
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" /> <TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item> </Form.Item>
<Form.Item <Form.Item
label="税费要求" label="税费要求"
...@@ -159,7 +159,7 @@ const Condition: React.FC<Iprops> = (props: any) => { ...@@ -159,7 +159,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入税费要求' }]} rules={[{ required: true, message: '请输入税费要求' }]}
> >
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" /> <TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item> </Form.Item>
<Form.Item <Form.Item
label="物流要求" label="物流要求"
...@@ -167,7 +167,7 @@ const Condition: React.FC<Iprops> = (props: any) => { ...@@ -167,7 +167,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入物流要求' }]} rules={[{ required: true, message: '请输入物流要求' }]}
> >
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" /> <TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item> </Form.Item>
<Form.Item <Form.Item
label="包装要求" label="包装要求"
...@@ -175,7 +175,7 @@ const Condition: React.FC<Iprops> = (props: any) => { ...@@ -175,7 +175,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入包装要求' }]} rules={[{ required: true, message: '请输入包装要求' }]}
> >
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" /> <TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item> </Form.Item>
<Form.Item <Form.Item
label="其他要求" label="其他要求"
...@@ -183,7 +183,7 @@ const Condition: React.FC<Iprops> = (props: any) => { ...@@ -183,7 +183,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入其他要求' }]} rules={[{ required: true, message: '请输入其他要求' }]}
> >
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" /> <TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item> </Form.Item>
</Form> </Form>
</> </>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment