|
@@ -113,18 +113,6 @@ const Order = Form.create()(
|
|
|
key: 'price'
|
|
|
},
|
|
|
{
|
|
|
- title: '公司名称',
|
|
|
- dataIndex: 'offset',
|
|
|
- key: 'offset',
|
|
|
- render: (text) => {
|
|
|
- return (
|
|
|
- <Tooltip title={text}>
|
|
|
- {text && text.length > 6 ? text.substr(0, 6) + '...' : text}
|
|
|
- </Tooltip>
|
|
|
- );
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
title: '项目名称',
|
|
|
dataIndex: 'memberPrice',
|
|
|
key: 'memberPrice',
|
|
@@ -147,7 +135,7 @@ const Order = Form.create()(
|
|
|
key: 'activityFlag1'
|
|
|
},
|
|
|
{
|
|
|
- title: '买方',
|
|
|
+ title: '消费者',
|
|
|
dataIndex: 'activityFlag12',
|
|
|
key: 'activityFlag12',
|
|
|
render: (text) => {
|
|
@@ -157,20 +145,7 @@ const Order = Form.create()(
|
|
|
</Tooltip>
|
|
|
);
|
|
|
}
|
|
|
- },
|
|
|
- {
|
|
|
- title: '卖方',
|
|
|
- dataIndex: 'activityFlag123',
|
|
|
- key: 'activityFlag123',
|
|
|
- render: (text) => {
|
|
|
- return (
|
|
|
- <Tooltip title={text}>
|
|
|
- {text && text.length > 6 ? text.substr(0, 6) + '...' : text}
|
|
|
- </Tooltip>
|
|
|
- );
|
|
|
- }
|
|
|
}
|
|
|
-
|
|
|
],
|
|
|
dataSource: []
|
|
|
};
|
|
@@ -298,14 +273,6 @@ const Order = Form.create()(
|
|
|
this.setState({ entryNameSearch: e.target.value });
|
|
|
}}
|
|
|
/>
|
|
|
- <Input
|
|
|
- style={{ width: 140, marginRight: 10 }}
|
|
|
- value={this.state.employerNameSearch}
|
|
|
- onChange={(e) => {
|
|
|
- this.setState({ employerNameSearch: e.target.value });
|
|
|
- }}
|
|
|
- placeholder="客户名称"
|
|
|
- />
|
|
|
<Button type="primary" onClick={this.search} style={{ marginRight: '10px' }}>
|
|
|
搜索
|
|
|
</Button>
|
|
@@ -402,7 +369,7 @@ const Order = Form.create()(
|
|
|
className="half-item"
|
|
|
labelCol={{ span: 8 }}
|
|
|
wrapperCol={{ span: 12 }}
|
|
|
- label="买方名称"
|
|
|
+ label="联系人"
|
|
|
>
|
|
|
<span>{theData.memberPrice1}</span>
|
|
|
</FormItem>
|
|
@@ -410,7 +377,7 @@ const Order = Form.create()(
|
|
|
className="half-item"
|
|
|
labelCol={{ span: 8 }}
|
|
|
wrapperCol={{ span: 12 }}
|
|
|
- label="卖方名称"
|
|
|
+ label="联系方式"
|
|
|
>
|
|
|
<span>{theData.activityFlag1}</span>
|
|
|
</FormItem>
|
|
@@ -418,34 +385,10 @@ const Order = Form.create()(
|
|
|
className="half-item"
|
|
|
labelCol={{ span: 8 }}
|
|
|
wrapperCol={{ span: 12 }}
|
|
|
- label="买方联系人"
|
|
|
+ label="消费者"
|
|
|
>
|
|
|
<span>{theData.activityPrice}</span>
|
|
|
</FormItem>
|
|
|
- <FormItem
|
|
|
- className="half-item"
|
|
|
- labelCol={{ span: 8 }}
|
|
|
- wrapperCol={{ span: 12 }}
|
|
|
- label="卖方联系人"
|
|
|
- >
|
|
|
- <span>{theData.offset}</span>
|
|
|
- </FormItem>
|
|
|
- <FormItem
|
|
|
- className="half-item"
|
|
|
- labelCol={{ span: 8 }}
|
|
|
- wrapperCol={{ span: 12 }}
|
|
|
- label="买方联系方式"
|
|
|
- >
|
|
|
- <span>{theData.memberPrice}</span>
|
|
|
- </FormItem>
|
|
|
- <FormItem
|
|
|
- className="half-item"
|
|
|
- labelCol={{ span: 8 }}
|
|
|
- wrapperCol={{ span: 12 }}
|
|
|
- label="卖方联系方式"
|
|
|
- >
|
|
|
- <span>{theData.activityFlag}</span>
|
|
|
- </FormItem>
|
|
|
</div>
|
|
|
</Spin>
|
|
|
</Form>
|