|
@@ -7180,13 +7180,17 @@ const NewService = Form.create()(
|
|
{this.state.processStatus == 0 &&
|
|
{this.state.processStatus == 0 &&
|
|
<div
|
|
<div
|
|
className="addSave"
|
|
className="addSave"
|
|
- style={{ marginTop: "15px" }}
|
|
|
|
|
|
+ style={{
|
|
|
|
+ marginTop: "15px",
|
|
|
|
+ display: "flex",
|
|
|
|
+ justifyContent: "center",
|
|
|
|
+ }}
|
|
>
|
|
>
|
|
<Button
|
|
<Button
|
|
className="cancel"
|
|
className="cancel"
|
|
type="primary"
|
|
type="primary"
|
|
onClick={this.handleCancels}
|
|
onClick={this.handleCancels}
|
|
- style={{ marginLeft: "200px" }}
|
|
|
|
|
|
+ style={{ margin: "0 25px" }}
|
|
htmlType="submit"
|
|
htmlType="submit"
|
|
loading={this.state.loading}
|
|
loading={this.state.loading}
|
|
>
|
|
>
|
|
@@ -7196,7 +7200,7 @@ const NewService = Form.create()(
|
|
className="cancel"
|
|
className="cancel"
|
|
type="primary"
|
|
type="primary"
|
|
onClick={this.handleCancelq}
|
|
onClick={this.handleCancelq}
|
|
- style={{ marginLeft: "50px" }}
|
|
|
|
|
|
+ style={{ margin: "0 25px" }}
|
|
htmlType="submit"
|
|
htmlType="submit"
|
|
loading={this.state.loading}
|
|
loading={this.state.loading}
|
|
>
|
|
>
|
|
@@ -7214,7 +7218,7 @@ const NewService = Form.create()(
|
|
className="cancel"
|
|
className="cancel"
|
|
type="danger"
|
|
type="danger"
|
|
// onClick={this.examOks}
|
|
// onClick={this.examOks}
|
|
- style={{ marginLeft: "50px" }}
|
|
|
|
|
|
+ style={{ margin: "0 25px" }}
|
|
loading={this.state.loading}
|
|
loading={this.state.loading}
|
|
>
|
|
>
|
|
订单作废
|
|
订单作废
|
|
@@ -7224,7 +7228,7 @@ const NewService = Form.create()(
|
|
className="cancel"
|
|
className="cancel"
|
|
type="ghost"
|
|
type="ghost"
|
|
onClick={this.handleCancelclose}
|
|
onClick={this.handleCancelclose}
|
|
- style={{ marginLeft: "50px" }}
|
|
|
|
|
|
+ style={{ margin: "0 25px" }}
|
|
>
|
|
>
|
|
取消
|
|
取消
|
|
</Button>
|
|
</Button>
|
|
@@ -8009,6 +8013,8 @@ const NewService = Form.create()(
|
|
item.status = "驳回";
|
|
item.status = "驳回";
|
|
} else if (item.status == 4) {
|
|
} else if (item.status == 4) {
|
|
item.status = "完成";
|
|
item.status = "完成";
|
|
|
|
+ } else if (item.status == 5) {
|
|
|
|
+ item.status = "撤销";
|
|
}
|
|
}
|
|
return (
|
|
return (
|
|
<li
|
|
<li
|
|
@@ -8020,12 +8026,7 @@ const NewService = Form.create()(
|
|
marginBottom: "10px",
|
|
marginBottom: "10px",
|
|
}}
|
|
}}
|
|
>
|
|
>
|
|
- {item.aname +
|
|
|
|
- ":" +
|
|
|
|
- "(" +
|
|
|
|
- item.status +
|
|
|
|
- ")" +
|
|
|
|
- item.remarks}
|
|
|
|
|
|
+ {item.aname + ":" + "【" + item.status + "】" + item.remarks + "(" + item.createTimes + ")"}
|
|
</li>
|
|
</li>
|
|
);
|
|
);
|
|
})}
|
|
})}
|