video_log
caicai8 5 years ago
parent ba6658bbfc
commit 11088176f6

@ -525,7 +525,6 @@ class Coursesleftnav extends Component{
}
saveNavmodapost=(url,value,positiontype,coursesId)=>{
debugger;
axios.post(url,
{name:value}).then((result)=>{
if(result!=undefined){

@ -228,7 +228,7 @@ class GraduateTopicDetailTable extends Component{
</Modal>
<Modal
visible={visible}
title="新建分班2"
title="新建分班"
closable={false}
footer={null}
destroyOnClose={true}

@ -66,7 +66,7 @@ function CourseGroupListTable(props) {
className:"color-grey-6",
render: (name, record, index) => {
return <WordsBtn title={name.length > 11 ? name : ''} onClick={() => onGoDetail(record)} style={''}
className="overflowHidden1" style2={{maxWidth: '180px', verticalAlign: 'bottom'}}>
className="overflowHidden1 color-dark" style2={{maxWidth: '180px', verticalAlign: 'bottom'}}>
{name}</WordsBtn>
}
},
@ -154,7 +154,7 @@ function CourseGroupListTable(props) {
{!isCourseEnd && isAdmin && <WordsBtn style2={{ marginRight: '12px' }} onClick={() => onDelete(record)} style={'grey'}>删除分班</WordsBtn>}
{isStudent && <WordsBtn style2={{ marginRight: '12px' }} onClick={() => addToDir(record)} style={''}>加入分班</WordsBtn>}
<WordsBtn onClick={() => onGoDetail(record)} style={''}>查看</WordsBtn>
<WordsBtn onClick={() => onGoDetail(record)} style={''} className="color-dark">查看</WordsBtn>
</React.Fragment>
}
})

Loading…
Cancel
Save