From 0d1527efd6def6bbcc6c00090ff6b4ce8bebfdda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=98=8E?= <775174143@qq.com> Date: Fri, 13 Mar 2020 19:10:45 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../courses/signin/student/Signedinlist.js | 41 +++++++++++++++++++ .../courses/signin/student/Signindetails.js | 10 ++++- 2 files changed, 49 insertions(+), 2 deletions(-) create mode 100644 public/react/src/modules/courses/signin/student/Signedinlist.js 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{ - - + {/* 列表+筛选 */} +
+ +
)