|
@@ -96,7 +96,7 @@ const IntentionCustomer = Form.create()(
|
|
|
pageSize: this.state.pagination.pageSize,
|
|
|
specially: 3, //审核列表
|
|
|
name: this.state.customerName, //名称
|
|
|
- orderNo: this.state.orderNo, //订单编号
|
|
|
+ orderNo: this.state.orderNoSearch, //订单编号
|
|
|
depId: this.state.departmenttSearch, //订单部门
|
|
|
starTime: this.state.releaseDate[0], //开始时间
|
|
|
endTime: this.state.releaseDate[1] //结束时间
|
|
@@ -337,7 +337,7 @@ const IntentionCustomer = Form.create()(
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- title: "时间",
|
|
|
+ title: "时间(天)",
|
|
|
dataIndex: "waitDay",
|
|
|
key: "waitDay",
|
|
|
render: (text, record) => {
|
|
@@ -780,7 +780,8 @@ const IntentionCustomer = Form.create()(
|
|
|
message.success("该特批订单已被驳回~");
|
|
|
this.setState({
|
|
|
visible: false,
|
|
|
- noVisible: false
|
|
|
+ noVisible: false,
|
|
|
+ reason: ""
|
|
|
});
|
|
|
this.loadData();
|
|
|
this.resets();
|
|
@@ -806,7 +807,8 @@ const IntentionCustomer = Form.create()(
|
|
|
//关闭输入理由框
|
|
|
noCancel() {
|
|
|
this.setState({
|
|
|
- noVisible: false
|
|
|
+ noVisible: false,
|
|
|
+ reason: ""
|
|
|
});
|
|
|
},
|
|
|
//搜索
|
|
@@ -935,9 +937,9 @@ const IntentionCustomer = Form.create()(
|
|
|
<Input
|
|
|
placeholder="订单编号"
|
|
|
style={{ width: "150px" }}
|
|
|
- value={this.state.orderNo}
|
|
|
+ value={this.state.orderNoSearch}
|
|
|
onChange={e => {
|
|
|
- this.setState({ orderNo: e.target.value });
|
|
|
+ this.setState({ orderNoSearch: e.target.value });
|
|
|
}}
|
|
|
/>
|
|
|
<Select
|
|
@@ -1181,7 +1183,39 @@ const IntentionCustomer = Form.create()(
|
|
|
</FormItem>
|
|
|
</div>
|
|
|
<div>
|
|
|
- <span style={{ marginLeft: 20, fontSize: "18px" }}>
|
|
|
+ <span style={{ marginLeft: "50px", fontSize: "18px" }}>
|
|
|
+ 项目业务
|
|
|
+ </span>
|
|
|
+ {this.state.processStatus == 0 ? (
|
|
|
+ <Button
|
|
|
+ type="primary"
|
|
|
+ onClick={this.addDetailed}
|
|
|
+ style={{
|
|
|
+ float: "right",
|
|
|
+ marginRight: "50px",
|
|
|
+ marginBottom: "15px"
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ 添加项目明细
|
|
|
+ </Button>
|
|
|
+ ) : (
|
|
|
+ ""
|
|
|
+ )}
|
|
|
+ </div>
|
|
|
+ <div className="patent-table">
|
|
|
+ <Spin spinning={this.state.loading}>
|
|
|
+ <Table
|
|
|
+ columns={this.state.columnsX}
|
|
|
+ dataSource={this.state.dataSourceX}
|
|
|
+ pagination={this.state.paginations}
|
|
|
+ onRowClick={this.tableRowClickX}
|
|
|
+ bordered
|
|
|
+ size="small"
|
|
|
+ />
|
|
|
+ </Spin>
|
|
|
+ </div>
|
|
|
+ <div style={{ marginTop: 10 }}>
|
|
|
+ <span style={{ marginLeft: 50, fontSize: "18px" }}>
|
|
|
催款节点
|
|
|
</span>
|
|
|
<span
|
|
@@ -1220,36 +1254,6 @@ const IntentionCustomer = Form.create()(
|
|
|
</Form>
|
|
|
</Spin>
|
|
|
</div>
|
|
|
- <div>
|
|
|
- <span style={{ marginLeft: "50px", fontSize: "20px" }}>
|
|
|
- 项目业务
|
|
|
- </span>
|
|
|
- {this.state.processStatus == 0 ? (
|
|
|
- <Button
|
|
|
- type="primary"
|
|
|
- onClick={this.addDetailed}
|
|
|
- style={{
|
|
|
- float: "right",
|
|
|
- marginRight: "50px",
|
|
|
- marginBottom: "15px"
|
|
|
- }}
|
|
|
- >
|
|
|
- 添加项目明细
|
|
|
- </Button>
|
|
|
- ) : (
|
|
|
- ""
|
|
|
- )}
|
|
|
- </div>
|
|
|
- <div className="patent-table">
|
|
|
- <Spin spinning={this.state.loading}>
|
|
|
- <Table
|
|
|
- columns={this.state.columnsX}
|
|
|
- dataSource={this.state.dataSourceX}
|
|
|
- pagination={this.state.paginations}
|
|
|
- onRowClick={this.tableRowClickX}
|
|
|
- />
|
|
|
- </Spin>
|
|
|
- </div>
|
|
|
<div className="addSave" style={{ marginTop: "15px" }}>
|
|
|
<Button
|
|
|
className="cancel"
|