dev01 2 years ago
parent
commit
1dc6f86b44

+ 6 - 1
js/component/common/projectOperation/vip.jsx

@@ -98,7 +98,12 @@ class ProjectOperationVip extends Component {
         if (!data.error.length) {
           Modal.success({
             title: '保存成功!',
-            content: '已提出会员项目申请!请在“订单管理-我的会员项目”跟进查看会员项目的审核状态,审核通过,即表示添加会员项目完成!!!',
+            content: (
+              <div>
+                已提出会员项目申请!请在
+                <span style={{ color: "red" }}>“订单管理-我的会员项目“</span>
+                跟进查看会员项目的审核状态,审核通过,即表示添加会员项目完成!!!
+              </div>),
           });
           // message.success("保存成功!");
           this.props.onCancel();

+ 8 - 9
js/component/manageCenter/financialManage/orderDetail/orderDetail.jsx

@@ -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>
       );
     },