浏览代码

Merge branch 'dev' of http://git.ycjcjy.com/zhiyuxing/estateagents-admin-manager into dev

weichaochao 5 年前
父节点
当前提交
18fef9e247
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4
    2
      src/pages/house/edit/components/base.jsx

+ 4
- 2
src/pages/house/edit/components/base.jsx 查看文件

143
       })
143
       })
144
     }
144
     }
145
     
145
     
146
-    <SalesBatchHelpDoc visible={showHelp} onCancel={() => setShowHelp(false)} />
147
   return (
146
   return (
148
-    <XForm onSubmit={handleSubmit} onCancel={cancelPage} fields={fields}></XForm>
147
+    <>
148
+      <XForm onSubmit={handleSubmit} onCancel={cancelPage} fields={fields}></XForm>
149
+      <SalesBatchHelpDoc visible={showHelp} onCancel={() => setShowHelp(false)} />
150
+    </>
149
   );
151
   );
150
 }
152
 }
151
 
153