|
@@ -16,7 +16,9 @@ import {
|
|
|
Cascader,
|
|
|
Tabs,
|
|
|
Select,
|
|
|
- Tooltip
|
|
|
+ Tooltip,
|
|
|
+ Row,
|
|
|
+ Col
|
|
|
} from 'antd';
|
|
|
import NewService from "./addService.jsx";
|
|
|
import moment from 'moment';
|
|
@@ -1842,9 +1844,11 @@ const MyService = Form.create()(
|
|
|
</TabPane>
|
|
|
<TabPane tab="搜索" key="2">
|
|
|
<div className="user-search" style={{ marginLeft: 10 }}>
|
|
|
+
|
|
|
+ <Row>
|
|
|
<Input
|
|
|
placeholder="订单编号"
|
|
|
- style={{ width: "150px" }}
|
|
|
+ style={{ width: "150px", marginRight: "10px" }}
|
|
|
value={this.state.searchOrderNo}
|
|
|
onChange={e => {
|
|
|
this.setState({ searchOrderNo: e.target.value });
|
|
@@ -1852,7 +1856,7 @@ const MyService = Form.create()(
|
|
|
/>
|
|
|
<Input
|
|
|
placeholder="客户名称"
|
|
|
- style={{ width: "150px" }}
|
|
|
+ style={{ width: "150px", marginRight: "10px" }}
|
|
|
value={this.state.customerName}
|
|
|
onChange={e => {
|
|
|
this.setState({ customerName: e.target.value });
|
|
@@ -1872,7 +1876,7 @@ const MyService = Form.create()(
|
|
|
</Select>
|
|
|
<Input
|
|
|
placeholder="合同编号"
|
|
|
- style={{ width: "150px" }}
|
|
|
+ style={{ width: "150px", marginRight: 10 }}
|
|
|
value={this.state.contractNoSearch}
|
|
|
onChange={e => {
|
|
|
this.setState({
|
|
@@ -1881,7 +1885,7 @@ const MyService = Form.create()(
|
|
|
}}
|
|
|
/>
|
|
|
<Select
|
|
|
- style={{ width: 100 }}
|
|
|
+ style={{ width: 120 }}
|
|
|
placeholder="结算状态"
|
|
|
value={this.state.liquidationStatusSearch}
|
|
|
onChange={e => {
|
|
@@ -1895,7 +1899,7 @@ const MyService = Form.create()(
|
|
|
<Option value="2">已付清</Option>
|
|
|
</Select>
|
|
|
<Select
|
|
|
- style={{ width: 100 }}
|
|
|
+ style={{ width: 120 }}
|
|
|
placeholder="特批状态"
|
|
|
value={this.state.approvalSearch}
|
|
|
onChange={e => {
|
|
@@ -1908,7 +1912,7 @@ const MyService = Form.create()(
|
|
|
<Option value="1">特批</Option>
|
|
|
</Select>
|
|
|
<Select
|
|
|
- style={{ width: 100 }}
|
|
|
+ style={{ width: 120 }}
|
|
|
placeholder="签单金额"
|
|
|
value={this.state.amountStatus}
|
|
|
onChange={e => {
|
|
@@ -1924,7 +1928,7 @@ const MyService = Form.create()(
|
|
|
<Option value="4">40万元以上</Option>
|
|
|
</Select>
|
|
|
<Select
|
|
|
- style={{ width: 100 }}
|
|
|
+ style={{ width: 120 }}
|
|
|
placeholder="会员状态"
|
|
|
value={this.state.projectType}
|
|
|
onChange={e => {
|
|
@@ -1937,8 +1941,8 @@ const MyService = Form.create()(
|
|
|
<Option value="0">非会员</Option>
|
|
|
</Select>
|
|
|
<Select
|
|
|
- style={{ width: 100 }}
|
|
|
- placeholder="审核状态"
|
|
|
+ style={{ width: 140 }}
|
|
|
+ placeholder="流程状态"
|
|
|
value={this.state.processStatus}
|
|
|
onChange={e => {
|
|
|
this.setState({
|
|
@@ -1946,6 +1950,7 @@ const MyService = Form.create()(
|
|
|
});
|
|
|
}}
|
|
|
>
|
|
|
+ <Option value="">全部</Option>
|
|
|
<Option value="0">已派营销员</Option>
|
|
|
<Option value="1">已派营销员管理员</Option>
|
|
|
<Option value="2">已派财务管理员</Option>
|
|
@@ -1954,41 +1959,45 @@ const MyService = Form.create()(
|
|
|
<Option value="5">已部分派咨询师经理</Option>
|
|
|
<Option value="6">已部全部派咨询师经理</Option>
|
|
|
</Select>
|
|
|
- <span style={{ marginRight: "10px" }}>下单时间 :</span>
|
|
|
- <RangePicker
|
|
|
- style={{ width:200 }}
|
|
|
- value={[
|
|
|
- this.state.releaseDate[0]
|
|
|
- ? moment(this.state.releaseDate[0])
|
|
|
- : null,
|
|
|
- this.state.releaseDate[1]
|
|
|
- ? moment(this.state.releaseDate[1])
|
|
|
- : null
|
|
|
- ]}
|
|
|
- onChange={(data, dataString) => {
|
|
|
- this.setState({ releaseDate: dataString });
|
|
|
- }}
|
|
|
- />
|
|
|
-
|
|
|
<Button
|
|
|
type="primary"
|
|
|
onClick={this.search}
|
|
|
- style={{ marginLeft: "10px" }}
|
|
|
+ style={{ margin: "0 10px" }}
|
|
|
>
|
|
|
搜索
|
|
|
<Icon type="search" />
|
|
|
</Button>
|
|
|
- <Button onClick={this.reset}>
|
|
|
+ <Button onClick={this.reset}
|
|
|
+ style={{ marginRight: "10px" }}>
|
|
|
重置 <Icon type="reload" />
|
|
|
</Button>
|
|
|
<Button
|
|
|
type="primary"
|
|
|
- className="addButton"
|
|
|
onClick={this.addClick}
|
|
|
+ style={{ marginRight: "10px" }}
|
|
|
>
|
|
|
开单
|
|
|
<Icon type="plus" />
|
|
|
</Button>
|
|
|
+ </Row>
|
|
|
+ <Row style={{ marginTop: 10 }}>
|
|
|
+ <span style={{ marginRight: "10px" }}>下单时间 :</span>
|
|
|
+ <RangePicker
|
|
|
+ style={{ width:200 }}
|
|
|
+ value={[
|
|
|
+ this.state.releaseDate[0]
|
|
|
+ ? moment(this.state.releaseDate[0])
|
|
|
+ : null,
|
|
|
+ this.state.releaseDate[1]
|
|
|
+ ? moment(this.state.releaseDate[1])
|
|
|
+ : null
|
|
|
+ ]}
|
|
|
+ onChange={(data, dataString) => {
|
|
|
+ this.setState({ releaseDate: dataString });
|
|
|
+ }}
|
|
|
+ />
|
|
|
+
|
|
|
+ </Row>
|
|
|
</div>
|
|
|
</TabPane>
|
|
|
<TabPane tab="查看" key="3">
|