|
@@ -736,16 +736,14 @@ const OrderDetail = Form.create()(
|
|
|
<div style={{ position: "absolute", top: '12px', left: '81px', zIndex: 10000 }}>
|
|
|
<OrderItemStatus deleteSign={this.state.deleteSign} />
|
|
|
</div>
|
|
|
- {this.state.resVisible ? (
|
|
|
+ {this.state.resVisible &&
|
|
|
<ResolutionDetail
|
|
|
cancel={this.resCancel}
|
|
|
detail={this.state.resRecord}
|
|
|
visible={this.state.resVisible}
|
|
|
id={this.state.resRecord.orderNo}
|
|
|
/>
|
|
|
- ) : (
|
|
|
- ""
|
|
|
- )}
|
|
|
+ }
|
|
|
<Form layout="horizontal" id="demand-form">
|
|
|
<Spin spinning={this.state.loading}>
|
|
|
<div className="clearfix">
|
|
@@ -1374,11 +1372,12 @@ const OrderDetail = Form.create()(
|
|
|
</div>
|
|
|
</Spin>
|
|
|
</Form>
|
|
|
- {this.state.addnextVisible && <ProjectDetailsReadOnly
|
|
|
- infor={this.state.dataInfor}
|
|
|
- visible={this.state.addnextVisible}
|
|
|
- onCancel={this.nextCancel}
|
|
|
- />}
|
|
|
+ {this.state.addnextVisible &&
|
|
|
+ <ProjectDetailsReadOnly
|
|
|
+ infor={this.state.dataInfor}
|
|
|
+ visible={this.state.addnextVisible}
|
|
|
+ onCancel={this.nextCancel}
|
|
|
+ />}
|
|
|
</div>
|
|
|
);
|
|
|
},
|