From 8356aaa16e4ac4da18f66e0ea2825bc8dc60e6fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=9E=97?= <904079904@qq.com> Date: Mon, 9 Sep 2019 16:57:32 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E7=AB=A0=E8=8A=82=E9=80=89?= =?UTF-8?q?=E6=8B=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../coursesDetail/MyEduChapterupdate.js | 61 +++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 public/react/src/modules/courses/coursesDetail/MyEduChapterupdate.js diff --git a/public/react/src/modules/courses/coursesDetail/MyEduChapterupdate.js b/public/react/src/modules/courses/coursesDetail/MyEduChapterupdate.js new file mode 100644 index 000000000..7fdf0f0d5 --- /dev/null +++ b/public/react/src/modules/courses/coursesDetail/MyEduChapterupdate.js @@ -0,0 +1,61 @@ +import React, { Component } from 'react'; +import {getImageUrl} from 'educoder'; +import { Modal} from 'antd'; +import axios from 'axios'; +import './common.css' +//立即章节选择 +class MyEduChapterupdate extends Component { + + constructor(props) { + super(props); + this.state={ + + } + } + + //取消按钮 + modalCancel=()=>{ + + } + + //确认按钮 + setDownload=()=>{ + //立即联系 + // this.props.setNotcompleteds() + } + + + render() { + + return( + +
+
+

内容

+
+
+ this.modalCancel()}>取消 + this.setDownload()}>确定 +
+
+ ) + } +} + +export default MyEduChapterupdate; \ No newline at end of file