傅行帆 5 years ago
parent
commit
d606cf3fe9
1 changed files with 4 additions and 2 deletions
  1. 4
    2
      src/pages/house/edit/components/base.jsx

+ 4
- 2
src/pages/house/edit/components/base.jsx View File

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