Merge branch 'dev_aliyun' of https://bdgit.educoder.net/Hjqreturn/educoder into dev_aliyun

dev_cs_new
hjm 6 years ago
commit 0369893e9a

@ -169,7 +169,7 @@ input::-ms-clear{display:none;}
.newContainer{ min-height:100%; height: auto !important; height: 100%; /*IE6不识别min-height*/position: relative;} .newContainer{ min-height:100%; height: auto !important; height: 100%; /*IE6不识别min-height*/position: relative;}
.educontent{width: 1200px;margin:0px auto;box-sizing: border-box}/*中间部分宽度固定为1200*/ .educontent{width: 1200px;margin:0px auto;box-sizing: border-box}/*中间部分宽度固定为1200*/
.newMain{ margin: 0 auto; padding-bottom: 235px; min-width:1200px;padding-top: 60px}/*padding-bottom根据底部的高度而定*/ .newMain{ margin: 0 auto; padding-bottom: 235px; min-width:1200px;}/*padding-bottom根据底部的高度而定*/
/*高度*/ /*高度*/
.height-100{height: 100%;} .height-100{height: 100%;}

@ -3,6 +3,7 @@ json.candidates do
json.id user.id json.id user.id
json.name user.real_name json.name user.real_name
json.nickname user.nickname json.nickname user.nickname
json.login user.login
json.school_name user.user_extension.school.try(:name) json.school_name user.user_extension.school.try(:name)
json.school_id user.user_extension.school.try(:id) json.school_id user.user_extension.school.try(:id)
json.added @course.course_member?(user.id, [1, 2, 3]) json.added @course.course_member?(user.id, [1, 2, 3])

@ -104,17 +104,17 @@ class ListPageIndex extends Component{
{/*头部banner*/} {/*头部banner*/}
<CoursesBanner {...this.props}></CoursesBanner> <CoursesBanner {...this.props}></CoursesBanner>
{/*{yslGuideone===null||yslGuideone===undefined||yslGuideone===false?*/} {yslGuideone===null||yslGuideone===undefined||yslGuideone===false?
{/* (*/} (
{/* this.props.isAdmin()===true?*/} this.props.isAdmin()===true?
{/* <Guide*/} <Guide
{/* setwindowlocal={(b)=>this.setwindowlocal(b)}*/} setwindowlocal={(b)=>this.setwindowlocal(b)}
{/* >*/} >
{/* </Guide>*/} </Guide>
{/* :""*/} :""
{/* )*/} )
{/* :""*/} :""
{/*}*/} }
<div className="educontent clearfix" style={{flex: "1 0 auto"}}> <div className="educontent clearfix" style={{flex: "1 0 auto"}}>

@ -21,21 +21,32 @@ class Guide extends Component {
} }
componentDidMount() { componentDidMount() {
// 1366x768
// var mywidthone=7;
var mywidthone=0; var mywidthone=0;
if(window.screen.width===1024){ if(window.screen.width===1024){
mywidthone=1; mywidthone=1;
} }
if(window.screen.width===1280){ else if(window.screen.width===1280){
mywidthone=2; mywidthone=2;
} }
if(window.screen.width===1440){ else if(window.screen.width===1440){
mywidthone=3; mywidthone=3;
} }
if(window.screen.width===1680){ else if(window.screen.width===1680){
mywidthone=4; mywidthone=4;
} }
if(window.screen.width===1920){ else if(window.screen.width===1920){
mywidthone=5;
}
else if(window.screen.width===1366){
mywidthone=6;
}
else if(window.screen.width===1600){
mywidthone=7;
}
else{
mywidthone=5; mywidthone=5;
} }
this.setState({ this.setState({
@ -54,8 +65,9 @@ class Guide extends Component {
render() { render() {
let {page,mywidth}=this.state; let {page,mywidth}=this.state;
// console.log("屏幕宽度"); // console.log("屏幕宽度");
// console.log(window.screen.width); console.log(window.screen.width);
// console.log(mywidth); console.log(mywidth);
return ( return (
<div className="guide-shadow"> <div className="guide-shadow">
<style> <style>
@ -70,14 +82,14 @@ class Guide extends Component {
{ {
page===1? page===1?
<div className="guide-content"> <div className="guide-content">
<img className={mywidth===1?"ysldiv11024":mywidth===2?"ysldiv11280":mywidth===3?"ysldiv11440":mywidth===4?"ysldiv11680":"ysldiv11900"} src={guihome1} onClick={(i)=>this.thissetPage(2)} /> <img className={mywidth===1?"ysldiv11024":mywidth===2?"ysldiv11280":mywidth===3?"ysldiv11440":mywidth===4?"ysldiv11680":mywidth===5?"ysldiv11900":mywidth===6?"ysldiv11366":mywidth===7?"ysldiv11600":"ysldiv11900"} src={guihome1} onClick={(i)=>this.thissetPage(2)} />
</div> </div>
:"" :""
} }
{ {
page===2? page===2?
<div className="guide-content"> <div className="guide-content">
<img className={mywidth===1?"ysldiv21024":mywidth===2?"ysldiv21280":mywidth===3?"ysldiv21440":mywidth===4?"ysldiv21680":"ysldiv21900"} src={guihome2} onClick={(i)=>this.thissetPage(3)}/> <img className={mywidth===1?"ysldiv21024":mywidth===2?"ysldiv21280":mywidth===3?"ysldiv21440":mywidth===4?"ysldiv21680":mywidth===5?"ysldiv21900":mywidth===6?"ysldiv21366":mywidth===7?"ysldiv21600":"ysldiv21900"} src={guihome2} onClick={(i)=>this.thissetPage(3)}/>
</div> </div>
: :
"" ""
@ -85,7 +97,7 @@ class Guide extends Component {
{ {
page===3? page===3?
<div className="guide-content"> <div className="guide-content">
<img className={mywidth===1?"ysldiv31024":mywidth===2?"ysldiv31280":mywidth===3?"ysldiv31440":mywidth===4?"ysldiv31680":"ysldiv31900"} src={guihome3} onClick={(i)=>this.thissetPage(4)}/> <img className={mywidth===1?"ysldiv31024":mywidth===2?"ysldiv31280":mywidth===3?"ysldiv31440":mywidth===4?"ysldiv31680":mywidth===5?"ysldiv31900":mywidth===6?"ysldiv31366":mywidth===7?"ysldiv31600":"ysldiv31900"} src={guihome3} onClick={(i)=>this.thissetPage(4)}/>
</div> </div>
: :
"" ""
@ -93,7 +105,7 @@ class Guide extends Component {
{ {
page===4? page===4?
<div className="guide-content"> <div className="guide-content">
<img className={mywidth===1?"ysldiv41024":mywidth===2?"ysldiv41280":mywidth===3?"ysldiv41440":mywidth===4?"ysldiv41680":"ysldiv41900"} src={guihome4} onClick={(i)=>this.thissetPage(5)}/> <img className={mywidth===1?"ysldiv41024":mywidth===2?"ysldiv41280":mywidth===3?"ysldiv41440":mywidth===4?"ysldiv41680":mywidth===5?"ysldiv41900":mywidth===6?"ysldiv41366":mywidth===7?"ysldiv41600":"ysldiv41900"} src={guihome4} onClick={(i)=>this.thissetPage(5)}/>
</div> </div>
: :
"" ""
@ -101,7 +113,7 @@ class Guide extends Component {
{ {
page===5? page===5?
<div className="guide-content"> <div className="guide-content">
<img className={mywidth===1?"ysldiv51024":mywidth===2?"ysldiv51280":mywidth===3?"ysldiv51440":mywidth===4?"ysldiv51680":"ysldiv51900"} src={guihome5} onClick={(i)=>this.thissetPage(6)}/> <img className={mywidth===1?"ysldiv51024":mywidth===2?"ysldiv51280":mywidth===3?"ysldiv51440":mywidth===4?"ysldiv51680":mywidth===5?"ysldiv51900":mywidth===6?"ysldiv51366":mywidth===7?"ysldiv51600":"ysldiv51900"} src={guihome5} onClick={(i)=>this.thissetPage(6)}/>
</div> </div>
: :
"" ""
@ -109,7 +121,7 @@ class Guide extends Component {
{ {
page===6? page===6?
<div className="guide-content"> <div className="guide-content">
<img className={mywidth===1?"ysldiv61024":mywidth===2?"ysldiv61280":mywidth===3?"ysldiv61440":mywidth===4?"ysldiv61680":"ysldiv61900"} src={guihome6} onClick={(i)=>this.thissetPage(7)}/> <img className={mywidth===1?"ysldiv61024":mywidth===2?"ysldiv61280":mywidth===3?"ysldiv61440":mywidth===4?"ysldiv61680":mywidth===5?"ysldiv61900":mywidth===6?"ysldiv61366":mywidth===7?"ysldiv61600":"ysldiv61900"} src={guihome6} onClick={(i)=>this.thissetPage(7)}/>
</div> </div>
: :
"" ""

@ -2492,7 +2492,7 @@ class Listofworksstudentone extends Component {
<div className="clearfix"> <div className="clearfix">
<span className="fl color-grey-6 font-12"><span <span className="fl color-grey-6 font-12"><span
className="color-orange-tip">{teacherdata === undefined ? "" : teacherdata.student_works&&teacherdata.student_works.length}</span>{teacherdata === undefined ? "" : teacherdata.all_member_count} </span> className="color-orange-tip">{teacherdata === undefined ? "" : teacherdata === undefined ? "" : teacherdata.all_member_count}</span>{teacherdata === undefined ? "" : teacherdata.all_member_count} </span>
<style> <style>
{ {
` `

@ -20,7 +20,7 @@
right: 0; right: 0;
bottom: 0; bottom: 0;
background-color: rgba(0, 0, 0, 0.8); background-color: rgba(0, 0, 0, 0.4);
transition: all .3s ease-out; transition: all .3s ease-out;
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -236,15 +236,19 @@
} }
.ysldiv11680{ .ysldiv11680{
margin-top: 11%; margin-top: 11.5%;
margin-left: 13%; margin-left: 13%;
margin-right: 10%; margin-right: 9%;
}
.ysldiv11600{
margin-top: 12%;
margin-left: 11%;
margin-right: 7%;
} }
.ysldiv11440{ .ysldiv11440{
margin-top: 14%; margin-top: 14%;
margin-left: 7%; margin-left: 7%;
margin-right: 3%; margin-right: 3%;
height: 60%;
} }
.ysldiv11280{ .ysldiv11280{
@ -253,6 +257,12 @@
margin-right: 0%; margin-right: 0%;
height: 60%; height: 60%;
} }
.ysldiv11366{
margin-top: 15%;
margin-left: 5%;
margin-right: 2%;
height: 60%;
}
.ysldiv11024{ .ysldiv11024{
margin-top: 20%; margin-top: 20%;
margin-left: 0%; margin-left: 0%;
@ -270,16 +280,19 @@
} }
.ysldiv21680{ .ysldiv21680{
margin-top: 11%; margin-top: 11.5%;
margin-left: 45%; margin-left: 45%;
margin-right: 20%;
}
.ysldiv21600{
margin-top: 12%;
margin-left: 47%;
margin-right: 20%; margin-right: 20%;
height: 24%;
} }
.ysldiv21440{ .ysldiv21440{
margin-top: 14%; margin-top: 14%;
margin-left: 47%; margin-left: 47%;
margin-right: 17%; margin-right: 17%;
height: 25%;
} }
.ysldiv21280{ .ysldiv21280{
@ -288,6 +301,12 @@
margin-right: 14%; margin-right: 14%;
height: 25%; height: 25%;
} }
.ysldiv21366{
margin-top: 15%;
margin-left: 51%;
margin-right: 14%;
height: 23%;
}
.ysldiv21024{ .ysldiv21024{
margin-top: 20%; margin-top: 20%;
margin-left: 61%; margin-left: 61%;
@ -303,12 +322,17 @@
} }
.ysldiv31680{ .ysldiv31680{
margin-top: 11%; margin-top: 11.5%;
margin-left: 14%; margin-left: 14%;
margin-right: 45%;
}
.ysldiv31600{
margin-top: 12%;
margin-left: 12%;
margin-right: 45%; margin-right: 45%;
} }
.ysldiv31440{ .ysldiv31440{
margin-top: 13%; margin-top: 13.5%;
margin-left: 8%; margin-left: 8%;
margin-right: 44%; margin-right: 44%;
} }
@ -318,6 +342,11 @@
margin-left: 3%; margin-left: 3%;
margin-right: 44%; margin-right: 44%;
} }
.ysldiv31366{
margin-top: 14%;
margin-left: 6%;
margin-right: 43%;
}
.ysldiv31024{ .ysldiv31024{
margin-top: 18%; margin-top: 18%;
margin-left: 1%; margin-left: 1%;
@ -327,27 +356,37 @@
/*目录管理*/ /*目录管理*/
.ysldiv41900{ .ysldiv41900{
margin-top: 18%; margin-top: 16%;
margin-left: 19%; margin-left: 19%;
margin-right: 28%; margin-right: 29%;
} }
.ysldiv41680{ .ysldiv41680{
margin-top: 21%; margin-top: 18%;
margin-left: 14%; margin-left: 14%;
margin-right: 24%;
}
.ysldiv41600{
margin-top: 19%;
margin-left: 12%;
margin-right: 23%; margin-right: 23%;
} }
.ysldiv41440{ .ysldiv41440{
margin-top: 24%; margin-top: 21%;
margin-left: 8%; margin-left: 8%;
margin-right: 19%; margin-right: 20%;
} }
.ysldiv41280{ .ysldiv41280{
margin-top: 27%; margin-top: 24%;
margin-left: 3%; margin-left: 3%;
margin-right: 17%; margin-right: 17%;
} }
.ysldiv41366{
margin-top: 22%;
margin-left: 6%;
margin-right: 20%;
}
.ysldiv41024{ .ysldiv41024{
margin-top: 29%; margin-top: 29%;
margin-left: 0%; margin-left: 0%;
@ -356,27 +395,37 @@
/*导航排序*/ /*导航排序*/
.ysldiv51900{ .ysldiv51900{
margin-top: 18%; margin-top: 16%;
margin-left: 18%; margin-left: 18%;
margin-right: 42%; margin-right: 42%;
} }
.ysldiv51680{ .ysldiv51680{
margin-top: 20%; margin-top: 18%;
margin-left: 13%; margin-left: 13%;
margin-right: 41%; margin-right: 40%;
}
.ysldiv51600{
margin-top: 19%;
margin-left: 11%;
margin-right: 39%;
} }
.ysldiv51440{ .ysldiv51440{
margin-top: 24%; margin-top: 21%;
margin-left: 7%; margin-left: 7%;
margin-right: 38%; margin-right: 39%;
} }
.ysldiv51280{ .ysldiv51280{
margin-top: 27%; margin-top: 24%;
margin-left: 2%; margin-left: 2%;
margin-right: 38%; margin-right: 38%;
} }
.ysldiv51366{
margin-top: 22%;
margin-left: 5%;
margin-right: 39%;
}
.ysldiv51024{ .ysldiv51024{
margin-top: 34%; margin-top: 34%;
margin-left: -1%; margin-left: -1%;
@ -395,6 +444,11 @@
margin-left: 31%; margin-left: 31%;
margin-right: 14%; margin-right: 14%;
} }
.ysldiv61600{
margin-top: 19%;
margin-left: 30%;
margin-right: 12%;
}
.ysldiv61440{ .ysldiv61440{
margin-top: 21%; margin-top: 21%;
margin-left: 28%; margin-left: 28%;
@ -407,6 +461,12 @@
margin-right: 3%; margin-right: 3%;
height: 53%; height: 53%;
} }
.ysldiv61366{
margin-top: 22%;
margin-left: 26%;
margin-right: 6%;
height: 53%;
}
.ysldiv61024{ .ysldiv61024{
margin-top: 26%; margin-top: 26%;
margin-left: 27%; margin-left: 27%;

@ -649,7 +649,7 @@ submittojoinclass=(value)=>{
return ( return (
<div className="newHeader" id="nHeader" > <div className="newHeaders" id="nHeader" >
{isRender===true?<LoginDialog {isRender===true?<LoginDialog
Modifyloginvalue={()=>this.Modifyloginvalue()} Modifyloginvalue={()=>this.Modifyloginvalue()}
@ -662,7 +662,7 @@ submittojoinclass=(value)=>{
{...this.props} {...this.props}
{...this.state} {...this.state}
/>:""} />:""}
<a href="/" className={"fl mr60 ml25"}> <a href="/" className={"fl mr60 ml25 mt15"}>
<img alt="高校智能化教学与实训平台" className="logoimg" src={getImageUrl("images/educoder/headNavLogo.png?1526520218")}></img> <img alt="高校智能化教学与实训平台" className="logoimg" src={getImageUrl("images/educoder/headNavLogo.png?1526520218")}></img>
</a> </a>

@ -471,7 +471,22 @@ class TPMBanner extends Component {
}) })
} }
render() {
showonMouseOver=()=>{
$("#ratePanel").show();
this.setState({
showradios:true
})
}
hideonMouseOut=()=>{
$("#ratePanel").hide();
this.setState({
showradios:false
})
}
render() {
let { let {
Forkvisible, Forkvisible,
Senttothetype, Senttothetype,
@ -541,21 +556,6 @@ class TPMBanner extends Component {
// } // }
// } // }
// } // }
$("#commentsStar").hover(()=>{
$("#ratePanel").show();
this.setState({
showradios:true
})
},()=>{
$("#ratePanel").hide();
this.setState({
showradios:false
})
})
const radioStyle = { const radioStyle = {
display: 'block', display: 'block',
height: '30px', height: '30px',
@ -617,12 +617,12 @@ class TPMBanner extends Component {
</li> </li>
</ul> </ul>
<div className="pr fl" id="commentsStar"> <div className="pr fl" id="commentsStar" onMouseOver={()=>this.showonMouseOver()}>
<div className={"color-grey-c mb11"} style={{color: "#Fff",textAlign: "center"}}>学员评分</div> <div className={"color-grey-c mb11"} style={{color: "#Fff",textAlign: "center"}}>学员评分</div>
<div className="rateYo"> <div className="rateYo">
<Rating value={star_info[0]} disabled allowHalf/> <Rating value={star_info[0]} disabled allowHalf/>
</div> </div>
<div id="ratePanel" className="showratePanel" style={{"width":"512px"}}> <div id="ratePanel" className="showratePanel" style={{"width":"512px"}} onMouseOut={()=>this.hideonMouseOut()}>
<div className="pr"> <div className="pr">
<span className="rateTrangle"></span> <span className="rateTrangle"></span>
<div className="pr clearfix ratePanelContent" style={{height: '177px'}}> <div className="pr clearfix ratePanelContent" style={{height: '177px'}}>
@ -638,7 +638,7 @@ class TPMBanner extends Component {
</div> </div>
</div> </div>
</div> </div>
<div className="fr"> <div className="fr width360">
<div className="clearfix"> <div className="clearfix">
<div className="rateYo fl mt3"> <div className="rateYo fl mt3">
{showradios === true ? {showradios === true ?

@ -35,14 +35,14 @@ if (!window['indexHOCLoaded']) {
// $('head').append($('<link rel="stylesheet" type="text/css" />') // $('head').append($('<link rel="stylesheet" type="text/css" />')
// .attr('href', `${_url_origin}/stylesheets/educoder/antd.min.css?1525440977`)); // .attr('href', `${_url_origin}/stylesheets/educoder/antd.min.css?1525440977`));
$('head').append($('<link rel="stylesheet" type="text/css" />') $('head').append($('<link rel="stylesheet" type="text/css" />')
.attr('href', `${_url_origin}/stylesheets/css/edu-common.css?7`)); .attr('href', `${_url_origin}/stylesheets/css/edu-common.css?8`));
$('head').append($('<link rel="stylesheet" type="text/css" />') $('head').append($('<link rel="stylesheet" type="text/css" />')
.attr('href', `${_url_origin}/stylesheets/educoder/edu-main.css?7`)); .attr('href', `${_url_origin}/stylesheets/educoder/edu-main.css?8`));
// index.html有加载 // index.html有加载
$('head').append($('<link rel="stylesheet" type="text/css" />') $('head').append($('<link rel="stylesheet" type="text/css" />')
.attr('href', `${_url_origin}/stylesheets/educoder/edu-all.css?7`)); .attr('href', `${_url_origin}/stylesheets/educoder/edu-all.css?8`));
// $('head').append($('<link rel="stylesheet" type="text/css" />') // $('head').append($('<link rel="stylesheet" type="text/css" />')
@ -361,7 +361,16 @@ export function TPMIndexHOC(WrappedComponent) {
max-width: unset; max-width: unset;
overflow: hidden; overflow: hidden;
} }
.newHeaders{
max-width: unset;
background: #24292D !important;
width: 100%;
height: 60px !important;
min-width: 1200px;
z-index: 1000;
-moz-box-shadow: 0px 0px 12px rgba(0,0,0,0.1);
box-shadow: 0px 0px 12px rgba(0,0,0,0.1);
}
` `
}</style> }</style>
<NewHeader {...this.state} {...this.props}></NewHeader> <NewHeader {...this.state} {...this.props}></NewHeader>

@ -15,7 +15,7 @@ import axios from 'axios';
import './css/TPMsettings.css'; import './css/TPMsettings.css';
import { getImageUrl, toPath, getUrl } from 'educoder'; import { getImageUrl, toPath, getUrl ,appendFileSizeToUploadFileAll} from 'educoder';
let origin = getUrl(); let origin = getUrl();
@ -1338,9 +1338,13 @@ export default class TPMsettings extends Component {
} }
handleChange = (info) => { handleChange = (info) => {
console.log("handleChange1"); console.log("handleChange1");
let fileList = info.fileList; let {fileList}=this.state;
this.setState({ fileList:fileList, if(fileList.length===0){
deleteisnot:false}); let fileLists = info.fileList;
this.setState({ fileList:fileLists,
deleteisnot:false});
}
} }
onAttachmentRemove = (file) => { onAttachmentRemove = (file) => {
@ -1668,22 +1672,11 @@ export default class TPMsettings extends Component {
<div className="mt10" style={{ <div className="mt10" style={{
display: "inline-block" display: "inline-block"
}}> }}>
{ <Upload {...uploadProps} >
this.state.deleteisnot=== true? <Icon type="upload" className="fl mt3" > </Icon>
<Upload {...uploadProps} > <span className="color-blue fl cdefault">上传附件</span>
<Icon type="upload" className="fl mt3" > </Icon> <span className="color-grey-c fl ml10 ">(单个文件50M以内)</span>
<span className="color-blue fl cdefault">上传附件</span> </Upload>
<span className="color-grey-c fl ml10 ">(单个文件50M以内)</span>
</Upload>
:
<Upload {...uploadProps} disabled={true} >
<Icon type="upload" className="fl mt3" > </Icon>
<span className="color-grey-c fl">上传附件</span>
<span className="color-grey-c fl ml10 ">(单个文件50M以内)</span>
</Upload>
}
</div> </div>
</li> </li>
<div className={"color-red shixunspanred"}> <div className={"color-red shixunspanred"}>

@ -2,7 +2,7 @@ import React, {Component} from 'react';
import {TPMIndexHOC} from '../TPMIndexHOC'; import {TPMIndexHOC} from '../TPMIndexHOC';
import {SnackbarHOC} from 'educoder'; import {SnackbarHOC,appendFileSizeToUploadFileAll} from 'educoder';
import {Input, Select, Radio, Checkbox, Modal, Icon, DatePicker,Upload,Button,message,Form,notification} from 'antd'; import {Input, Select, Radio, Checkbox, Modal, Icon, DatePicker,Upload,Button,message,Form,notification} from 'antd';
@ -760,11 +760,16 @@ class Newshixuns extends Component {
// 附件相关 START // 附件相关 START
handleChange = (info) => { handleChange = (info) => {
let {fileList}=this.state;
console.log("handleChange1"); console.log("handleChange1");
let fileList = info.fileList; if(fileList.length===0){
this.setState({ let fileLists = info.fileList;
fileList:fileList, this.setState({
deleteisnot:false}); // fileList:appendFileSizeToUploadFileAll(fileList),
fileList:fileLists,
deleteisnot:false});
}
} }
onAttachmentRemove = (file) => { onAttachmentRemove = (file) => {
confirm({ confirm({
@ -1051,32 +1056,12 @@ class Newshixuns extends Component {
<div className="mt10" style={{ <div className="mt10" style={{
display: "inline-block" display: "inline-block"
}}> }}>
{/*<Form.Item>*/} <Upload {...uploadProps}>
{/* {*/} <Icon type="upload" className="fl mt3" > </Icon>
{/* getFieldDecorator('file',{*/} <span className="color-blue fl cdefault">上传附件</span>
{/* rules:[{*/} <span className="color-grey-c fl ml10 ">(单个文件50M以内)</span>
{/* }]*/}
{/* })(*/} </Upload>
{
deleteisnot=== true?
<Upload {...uploadProps} >
<Icon type="upload" className="fl mt3" > </Icon>
<span className="color-blue fl cdefault">上传附件</span>
<span className="color-grey-c fl ml10 ">(单个文件50M以内)</span>
</Upload>
:
<Upload {...uploadProps} disabled={true} >
<Icon type="upload" className="fl mt3" > </Icon>
<span className="color-grey-c fl">上传附件</span>
<span className="color-grey-c fl ml10 ">(单个文件50M以内)</span>
</Upload>
}
{/* )*/}
{/* }*/}
{/*</Form.Item>*/}
</div> </div>
</li> </li>

@ -106,3 +106,7 @@ a:active{text-decoration:none;}
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
} }
.width360{
width:360px;
}

@ -169,7 +169,7 @@ input::-ms-clear{display:none;}
.newContainer{ min-height:100%; height: auto !important; height: 100%; /*IE6不识别min-height*/position: relative;} .newContainer{ min-height:100%; height: auto !important; height: 100%; /*IE6不识别min-height*/position: relative;}
.educontent{width: 1200px;margin:0px auto;box-sizing: border-box}/*中间部分宽度固定为1200*/ .educontent{width: 1200px;margin:0px auto;box-sizing: border-box}/*中间部分宽度固定为1200*/
.newMain{ margin: 0 auto; padding-bottom: 235px; min-width:1200px;padding-top: 60px}/*padding-bottom根据底部的高度而定*/ .newMain{ margin: 0 auto; padding-bottom: 235px; min-width:1200px;}/*padding-bottom根据底部的高度而定*/
.newMain{ padding-bottom: 120px !important; } .newMain{ padding-bottom: 120px !important; }
/*高度*/ /*高度*/

Loading…
Cancel
Save