dev_forum
hjm 5 years ago
parent d982e1d6d3
commit 9784cb5433

@ -260,7 +260,7 @@ function buildColumns(that, student_works) {
{`${record.appeal_deal_count}/${appeal_all_count}`} {`${record.appeal_deal_count}/${appeal_all_count}`}
</span> </span>
</Tooltip> } </Tooltip> }
{ !appeal_all_count && '-/-'} { !appeal_all_count && <span style={{ color: '#747A7F' }}>-/-</span>}
</span> </span>
), ),
}) })
@ -303,7 +303,7 @@ function buildColumns(that, student_works) {
key: 'operation', key: 'operation',
dataIndex: 'operation', dataIndex: 'operation',
render: (operation, record) => ( render: (operation, record) => (
record.work_status === 0 ? '--': record.work_status === 0 ? <span style={{ color: '#747A7F' }}>--</span>:
<div> <div>
{/* 0 未提交 */} {/* 0 未提交 */}
{/*<React.Fragment>*/} {/*<React.Fragment>*/}

Loading…
Cancel
Save