|
@@ -148,7 +148,7 @@ const header = props => {
|
148
|
148
|
rules: [{ required: true, message: ' 请选择关联业务' }],
|
149
|
149
|
})(<Input hidden={true}/>)}
|
150
|
150
|
</Form.Item>
|
151
|
|
- <Form.Item label="甲方印章" >
|
|
151
|
+ <Form.Item label="甲方印章" style={{marginTop:'20px'}}>
|
152
|
152
|
{getFieldDecorator('sealId', {initialValue:contractBusinessData.sealId,
|
153
|
153
|
rules: [{ required: true, message: ' 请选择企业印章' }],
|
154
|
154
|
})(<SelectSeal companyId={props.form.getFieldValue('companyId')} onSuccess={e => sealOnSuccess(e)}/>)}
|
|
@@ -158,7 +158,7 @@ const header = props => {
|
158
|
158
|
rules: [{ required: true, message: '请输入甲方签章定位关键字' }],
|
159
|
159
|
})(<Input maxLength={20} style={{width:'400px'}}/>)}
|
160
|
160
|
</Form.Item>
|
161
|
|
- <Form.Item label="甲方关键字签章策略">
|
|
161
|
+ <Form.Item label="甲方关键字签章策略" style={{marginTop:'20px'}}>
|
162
|
162
|
{getFieldDecorator('signatoryStrategy', {initialValue:contractBusinessData.signatoryStrategy,
|
163
|
163
|
rules: [{ required: true, message: '请选择甲方关键字签章策略' }],
|
164
|
164
|
})(<Select placeholder="甲方关键字签章策略" style={{ width: '400px' }}>
|
|
@@ -172,7 +172,7 @@ const header = props => {
|
172
|
172
|
rules: [{ required: true, message: '请输入乙方签章定位关键字' }],
|
173
|
173
|
})(<Input maxLength={20} style={{width:'400px'}}/>)}
|
174
|
174
|
</Form.Item>
|
175
|
|
- <Form.Item label="乙方关键字签章策略">
|
|
175
|
+ <Form.Item label="乙方关键字签章策略" style={{marginTop:'20px'}}>
|
176
|
176
|
{getFieldDecorator('customerStrategy', {initialValue:contractBusinessData.customerStrategy,
|
177
|
177
|
rules: [{ required: true, message: '请选择乙方关键字签章策略' }],
|
178
|
178
|
})(<Select placeholder="乙方关键字签章策略" style={{ width: '400px' }}>
|