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

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

parent 8e027563
......@@ -146,7 +146,7 @@ const BidRequirement: React.FC<Iprops> = (props: any) => {
name="demand"
rules={[{ required: true, message: '请输入报名要求' }]}
>
<TextArea rows={3} maxLength={200} placeholder="最长200个字符,100个汉字" />
<TextArea rows={3} maxLength={100} placeholder="最长200个字符,100个汉字" />
</Form.Item>
<Form.Item
label="报名要求附件"
......
......@@ -143,7 +143,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
name="offer"
rules={[{ required: true, message: '请输入报价要求' }]}
>
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" />
<TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item>
<Form.Item
label="付款方式"
......@@ -151,7 +151,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入付款方式' }]}
>
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" />
<TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item>
<Form.Item
label="税费要求"
......@@ -159,7 +159,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入税费要求' }]}
>
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" />
<TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item>
<Form.Item
label="物流要求"
......@@ -167,7 +167,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入物流要求' }]}
>
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" />
<TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item>
<Form.Item
label="包装要求"
......@@ -175,7 +175,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入包装要求' }]}
>
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" />
<TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item>
<Form.Item
label="其他要求"
......@@ -183,7 +183,7 @@ const Condition: React.FC<Iprops> = (props: any) => {
rules={[{ required: true, message: '请输入其他要求' }]}
>
<TextArea rows={3} maxLength={100} placeholder="最长100个字符,50个汉字" />
<TextArea rows={3} maxLength={50} placeholder="最长100个字符,50个汉字" />
</Form.Item>
</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