diff --git a/src/forge/Team/GroupNew.jsx b/src/forge/Team/GroupNew.jsx
new file mode 100644
index 00000000..649e2dce
--- /dev/null
+++ b/src/forge/Team/GroupNew.jsx
@@ -0,0 +1,123 @@
+import React , { forwardRef , useCallback } from 'react';
+import { Form , Input , Radio , Checkbox , Switch , Button } from 'antd';
+import { Banner , WhiteBack , AlignCenter , Cancel } from '../Component/layout';
+import styled from 'styled-components';
+
+const TextArea = Input.TextArea;
+const Div = styled.div`{
+ padding:20px 30px;
+}`
+const OptionStyle = {
+ lineHeight:"25px",
+ height:'25px',
+ display:'block'
+}
+const addStyle = {
+ ...OptionStyle,
+ marginBottom:"7px"
+}
+
+export default Form.create()(
+ forwardRef(({ form })=>{
+ const { getFieldDecorator, validateFields, setFieldsValue } = form;
+
+ const helper = useCallback(
+ (label, name, rules, widget, isRequired , mbValue ) => (
+
+ {label}
+
+ {getFieldDecorator(name, { rules, validateFirst: true })(widget)}
+
+
+ ),
+ []
+ );
+ return(
+
+ 新建团队
+
+
+ )
+ })
+)
\ No newline at end of file
diff --git a/src/forge/Team/Index.jsx b/src/forge/Team/Index.jsx
index b97c3db0..86cccbd7 100644
--- a/src/forge/Team/Index.jsx
+++ b/src/forge/Team/Index.jsx
@@ -28,6 +28,12 @@ export default CNotificationHOC()(SnackbarHOC()(TPMIndexHOC(
return (
+ {
+ return
+ }}
+ >
{
diff --git a/src/forge/Team/SubDetail.jsx b/src/forge/Team/SubDetail.jsx
index cb8bcb77..9289d531 100644
--- a/src/forge/Team/SubDetail.jsx
+++ b/src/forge/Team/SubDetail.jsx
@@ -6,6 +6,10 @@ import './Index.scss';
import Cards from '../Component/Cards';
+const GroupNew = Loadable({
+ loader: () => import("./GroupNew"),
+ loading: Loading,
+});
const Group = Loadable({
loader: () => import("./TeamGroup"),
loading: Loading,
@@ -45,6 +49,12 @@ export default ((props)=>{
return
}}
>
+ {
+ return
+ }}
+ >
{