|
@@ -1077,6 +1077,10 @@ const IntentionCustomer = Form.create()(
|
|
},
|
|
},
|
|
//审核不通过
|
|
//审核不通过
|
|
examOks() {
|
|
examOks() {
|
|
|
|
+ if (!this.state.reason) {
|
|
|
|
+ message.warn("请先填写拒绝理由");
|
|
|
|
+ return
|
|
|
|
+ }
|
|
this.setState({
|
|
this.setState({
|
|
loading: true,
|
|
loading: true,
|
|
});
|
|
});
|
|
@@ -1098,7 +1102,7 @@ const IntentionCustomer = Form.create()(
|
|
if (data.error && data.error.length) {
|
|
if (data.error && data.error.length) {
|
|
message.warning(data.error[0].message);
|
|
message.warning(data.error[0].message);
|
|
this.setState({
|
|
this.setState({
|
|
- aloading: true,
|
|
|
|
|
|
+ aloading: false,
|
|
loading: false,
|
|
loading: false,
|
|
});
|
|
});
|
|
}
|
|
}
|
|
@@ -1523,12 +1527,12 @@ const IntentionCustomer = Form.create()(
|
|
return (
|
|
return (
|
|
<Tooltip title={text}>
|
|
<Tooltip title={text}>
|
|
<div
|
|
<div
|
|
- // style={{
|
|
|
|
- // width: 100,
|
|
|
|
- // overflow: "hidden",
|
|
|
|
- // whiteSpace: "nowrap",
|
|
|
|
- // textOverflow: "ellipsis",
|
|
|
|
- // }}
|
|
|
|
|
|
+ // style={{
|
|
|
|
+ // width: 100,
|
|
|
|
+ // overflow: "hidden",
|
|
|
|
+ // whiteSpace: "nowrap",
|
|
|
|
+ // textOverflow: "ellipsis",
|
|
|
|
+ // }}
|
|
>{text}</div>
|
|
>{text}</div>
|
|
</Tooltip>
|
|
</Tooltip>
|
|
)
|
|
)
|