Commit 61c991d4 by zhangleyuan

feat:处理选择同一张图片不被触发的问题

parent d1d25fc5
......@@ -178,7 +178,7 @@ class LiveCourseFilter extends React.Component {
<span>讲师:</span>
<Select
placeholder="请选择讲师"
style={{ width: 240, marginTop: 6 }}
style={{ width: 240}}
showSearch
allowClear
filterOption={(input, option) => option}
......@@ -214,7 +214,7 @@ class LiveCourseFilter extends React.Component {
value={courseState}
onChange={(value) => { this.handleChangeQuery('courseState', value) }}
>
<Option value="UN_START"></Option>
<Option value="UN_START"></Option>
<Option value="STARTING">上课中</Option>
<Option value="FINISH">已完成</Option>
<Option value="EXPIRED">未成功开课</Option>
......
......@@ -11,6 +11,12 @@
width: 30%;
margin-right: 3%;
margin-bottom: 12px;
.search-name{
vertical-align: middle;
display:inline-block;
height:32px;
line-height:32px;
}
}
}
.reset-fold-area {
......
......@@ -37,7 +37,7 @@ const { confirm } = Modal;
const courseStateShow = {
UN_START: {
code: 1,
title: "待课",
title: "待课",
color: "#FDBE31",
},
STARTING: {
......@@ -48,12 +48,12 @@ const courseStateShow = {
FINISH: {
code: 3,
title: "已完成",
color: "#2FC83C",
color: "#3BBDAA",
},
EXPIRED: {
code: 4,
title: "未成功开课",
color: "#CCCCCC",
color: "#999",
},
};
class LiveCourseList extends React.Component {
......@@ -180,10 +180,11 @@ class LiveCourseList extends React.Component {
<>
<span className="split"> | </span>
<span className="assistant">助教:
{ record.admins.map((item,index)=>{
return <span>{item.adminName} { (index < record.admins.length-1)&&(<span></span>)} </span>
})
}
{ record.admins.map((item,index)=>{
return <span>{item.adminName} { (index < record.admins.length-1)&&(<span></span>)} </span>
})
}
</span>
</>
}
......@@ -217,7 +218,7 @@ class LiveCourseList extends React.Component {
editData: item,
openCoursewareModal: true,
});
}}>{item.courseDocumentCount}</span>
}}>{item.courseDocumentCount}</span>
);
},
},
......
......@@ -17,6 +17,10 @@
color: #333333;
line-height: 20px;
font-weight: bold;
max-width:238px;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.course-time{
font-size: 12px;
......@@ -35,12 +39,28 @@
.teacher{
font-size: 12px;
color: #666666;
line-height: 20px;
// .teacher-name{
// max-width:60px;
// display:inline-block;
// overflow: hidden;
// text-overflow:ellipsis;
// white-space: nowrap;
// height:16px;
// line-height:16px;
// }
}
.assistant{
font-size: 12px;
color: #666666;
line-height: 20px;
// .assistant-name{
// max-width:60px;
// display:inline-block;
// overflow: hidden;
// text-overflow:ellipsis;
// white-space: nowrap;
// height:16px;
// line-height:16px;
// }
}
.split {
margin: 0 4px;
......@@ -56,6 +76,7 @@
font-size: 14px;
color: #5289FA;
line-height: 20px;
text-align:right;
}
.quota-icon{
color:#5289FA;
......
......@@ -14,7 +14,7 @@ import './PreviewCourseModal.less';
const courseStateShow = {
UN_START: {
title: "待课",
title: "待课",
},
STARTING: {
title: "上课中",
......
......@@ -2,7 +2,7 @@
* @Author: zhangleyuan
* @Date: 2020-11-27 15:06:31
* @LastEditors: zhangleyuan
* @LastEditTime: 2020-12-22 15:29:22
* @LastEditTime: 2020-12-28 14:27:02
* @Description: 描述一下
* @@Copyrigh: © 2020 杭州杰竞科技有限公司 版权所有
*/
......@@ -113,6 +113,7 @@ function PersonalInfoPage() {
<input
type="file"
accept="image/*"
value={''}
id="CrpperAvatarPic"
style={{ display: 'none' }}
onChange={_handleUpdateAvatar} />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment