diff --git a/public/react/src/modules/courses/signin/student/Signedinlist.js b/public/react/src/modules/courses/signin/student/Signedinlist.js
new file mode 100644
index 000000000..6abafe580
--- /dev/null
+++ b/public/react/src/modules/courses/signin/student/Signedinlist.js
@@ -0,0 +1,41 @@
+import React,{ Component } from "react";
+import { Row, Col,Select } from 'antd';
+
+const { Option } = Select;
+
+class Signedinlist extends Component {
+ constructor(props) {
+ super(props)
+ }
+ handleChange=(value)=>{
+ console.log(`selected ${value}`);
+ }
+ render() {
+
+ return(
+
+
+
+
+
+
+
+
+
+
+ col-12
+
+
+
+ )
+ }
+
+}
+
+
+export default Signedinlist
diff --git a/public/react/src/modules/courses/signin/student/Signindetails.js b/public/react/src/modules/courses/signin/student/Signindetails.js
index 679373e28..f85fa76e8 100644
--- a/public/react/src/modules/courses/signin/student/Signindetails.js
+++ b/public/react/src/modules/courses/signin/student/Signindetails.js
@@ -1,6 +1,7 @@
import React,{ Component } from "react";
import '../css/signincdi.css';
import Detailss from '../component/Detailss';
+import Signedinlist from './Signedinlist'
//在线学习
class Signindetails extends Component{
constructor(props){
@@ -46,8 +47,13 @@ class Signindetails extends Component{
-
-
+ {/* 列表+筛选 */}
+
+
+
)