Skip to content

Commit

Permalink
[Fix] UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry-zklcdc committed Jul 6, 2021
1 parent da00664 commit bfd665b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/pages/oj/components/mixins/problem.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default {
}
return h('Icon', {
props: {
type: status === 0 ? 'checkmark-round' : 'minus-round',
type: status === 0 ? 'md-checkmark' : 'md-remove',
size: '16'
},
style: {
Expand Down
8 changes: 3 additions & 5 deletions src/pages/oj/views/forum/ForumList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
props: {
type: nice,
size: '14',
color: '#f1c40f'
color: '#fdcb6e'
},
style: {
margin: nicemargin
Expand All @@ -141,7 +141,8 @@
h('Icon', {
props: {
type: top,
size: '14'
size: '14',
color: '#ff7675'
},
style: {
margin: topmargin
Expand Down Expand Up @@ -247,9 +248,6 @@
this.loadings.table = false
this.total = res.data.data.total
this.ForumList = res.data.data.results
if (this.isAuthenticated) {
this.addStatusColumn(this.problemTableColumns, res.data.data.results)
}
}, res => {
this.loadings.table = false
})
Expand Down

0 comments on commit bfd665b

Please sign in to comment.