|
|
|
@ -125,6 +125,7 @@ class Listofworksstudentone extends Component {
|
|
|
|
|
key: 'name',
|
|
|
|
|
align: "center",
|
|
|
|
|
className:'font-14 maxnamewidth100',
|
|
|
|
|
width:'100px',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span className="maxnamewidth100">
|
|
|
|
|
{record.name === undefined ?
|
|
|
|
@ -151,10 +152,10 @@ class Listofworksstudentone extends Component {
|
|
|
|
|
"text-align": "center"
|
|
|
|
|
}}>--</span>
|
|
|
|
|
:
|
|
|
|
|
<span className="maxnamewidth100" style={{
|
|
|
|
|
<a className="maxnamewidth100" title={record.name} style={{
|
|
|
|
|
"color": '#07111B',
|
|
|
|
|
"text-align": "center"
|
|
|
|
|
}}>{record.name}</span>
|
|
|
|
|
}}>{record.name}</a>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
@ -393,8 +394,9 @@ class Listofworksstudentone extends Component {
|
|
|
|
|
key: 'name',
|
|
|
|
|
align: 'center',
|
|
|
|
|
className:'font-14 maxnamewidth100',
|
|
|
|
|
width:'100px',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span className="maxnamewidth100" style={{"color": '#07111B', "text-align": "center"}}>{record.name}</span>
|
|
|
|
|
<a className="maxnamewidth100" title={record.name} style={{"color": '#07111B', "text-align": "center"}}>{record.name}</a>
|
|
|
|
|
)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -418,7 +420,7 @@ class Listofworksstudentone extends Component {
|
|
|
|
|
align: 'center',
|
|
|
|
|
className:'font-14',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span className="ysltable" style={{"color": '#07111B', "text-align": "center"}}>{record.classroom}</span>
|
|
|
|
|
<span className="ysltable" style={{"color": '#07111B', "text-align": "center"}}>{record.classroom === undefined ? "--" : record.classroom === "" ? "--" : record.classroom === null ? "--" : record.classroom}</span>
|
|
|
|
|
)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -654,8 +656,9 @@ class Listofworksstudentone extends Component {
|
|
|
|
|
key: 'name',
|
|
|
|
|
align: 'center',
|
|
|
|
|
className:'font-14 maxnamewidth100',
|
|
|
|
|
width:'100px',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span className="maxnamewidth100" style={{"color": '#07111B', "text-align": "center"}}>{record.name}</span>
|
|
|
|
|
<a className="maxnamewidth100" title={record.name} style={{"color": '#07111B', "text-align": "center"}}>{record.name}</a>
|
|
|
|
|
)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
@ -679,7 +682,7 @@ class Listofworksstudentone extends Component {
|
|
|
|
|
align: 'center',
|
|
|
|
|
className:'font-14',
|
|
|
|
|
render: (text, record) => (
|
|
|
|
|
<span className="ysltable" style={{"color": '#07111B', "text-align": "center"}}>{record.classroom}</span>
|
|
|
|
|
<span className="ysltable" style={{"color": '#07111B', "text-align": "center"}}>{record.classroom === undefined ? "--" : record.classroom === "" ? "--" : record.classroom === null ? "--" : record.classroom}</span>
|
|
|
|
|
)
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|