From 2e5fe5427d6db393e0495598ff43d90a052f4791 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期日, 28 四月 2024 14:06:42 +0800
Subject: [PATCH] 2024-04-28

---
 src/templates/sharecomponent/actioncomponent/verifyexcelout/otherform/index.jsx |   20 +++++++++++++++++++-
 1 files changed, 19 insertions(+), 1 deletions(-)

diff --git a/src/templates/sharecomponent/actioncomponent/verifyexcelout/otherform/index.jsx b/src/templates/sharecomponent/actioncomponent/verifyexcelout/otherform/index.jsx
index 068d8ee..9d79e04 100644
--- a/src/templates/sharecomponent/actioncomponent/verifyexcelout/otherform/index.jsx
+++ b/src/templates/sharecomponent/actioncomponent/verifyexcelout/otherform/index.jsx
@@ -1,6 +1,6 @@
 import React, {Component} from 'react'
 import PropTypes from 'prop-types'
-import { Form, Row, Col, Radio, Tooltip, Select } from 'antd'
+import { Form, Row, Col, Radio, Tooltip, Select, Input } from 'antd'
 import { QuestionCircleOutlined } from '@ant-design/icons'
 // import './index.scss'
 
@@ -105,6 +105,24 @@
               )}
             </Form.Item>
           </Col> : null}
+          <Col span={8}>
+            <Form.Item label="鍓嶇紑">
+              {getFieldDecorator('prefix', {
+                initialValue: line.prefix || ''
+              })(
+                <Input autoComplete="off" onChange={(e) => this.onChange('prefix', e.target.value)} onPressEnter={this.props.submit}/>
+              )}
+            </Form.Item>
+          </Col>
+          <Col span={8}>
+            <Form.Item label="鍚庣紑">
+              {getFieldDecorator('postfix', {
+                initialValue: line.postfix || ''
+              })(
+                <Input autoComplete="off" onChange={(e) => this.onChange('postfix', e.target.value)} onPressEnter={this.props.submit}/>
+              )}
+            </Form.Item>
+          </Col>
         </Row>
       </Form>
     )

--
Gitblit v1.8.0