update fe
This commit is contained in:
parent
10ec994b0d
commit
c63f8b0237
|
@ -404,4 +404,9 @@ export default {
|
|||
/deep/.el-card__header {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
@media screen and (min-width: 1050px) {
|
||||
/deep/ .vxe-table--body-wrapper {
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -441,4 +441,10 @@ span.rank-tag {
|
|||
.cite.no2 {
|
||||
border-top: 5px solid #e6bf25;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1050px) {
|
||||
/deep/ .vxe-table--body-wrapper {
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -56,13 +56,13 @@
|
|||
<vxe-table-column
|
||||
field="id"
|
||||
type="seq"
|
||||
min-width="50"
|
||||
width="50"
|
||||
fixed="left"
|
||||
></vxe-table-column>
|
||||
<vxe-table-column
|
||||
field="username"
|
||||
fixed="left"
|
||||
min-width="150"
|
||||
min-width="96"
|
||||
:title="$t('m.User')"
|
||||
>
|
||||
<template v-slot="{ row }">
|
||||
|
@ -78,7 +78,7 @@
|
|||
<vxe-table-column
|
||||
field="realname"
|
||||
fixed="left"
|
||||
min-width="100"
|
||||
min-width="96"
|
||||
:title="$t('m.RealName')"
|
||||
v-if="isContestAdmin"
|
||||
>
|
||||
|
|
|
@ -216,4 +216,10 @@ export default {
|
|||
};
|
||||
</script>
|
||||
|
||||
<style scoped></style>
|
||||
<style scoped>
|
||||
@media screen and (min-width: 1050px) {
|
||||
/deep/ .vxe-table--body-wrapper {
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
></vxe-table-column>
|
||||
<vxe-table-column
|
||||
field="username"
|
||||
min-width="150"
|
||||
min-width="96"
|
||||
fixed="left"
|
||||
:title="$t('m.User')"
|
||||
>
|
||||
|
@ -79,7 +79,7 @@
|
|||
</vxe-table-column>
|
||||
<vxe-table-column
|
||||
field="realname"
|
||||
min-width="100"
|
||||
min-width="96"
|
||||
fixed="left"
|
||||
:title="$t('m.RealName')"
|
||||
v-if="isContestAdmin"
|
||||
|
@ -104,7 +104,7 @@
|
|||
</template>
|
||||
</vxe-table-column>
|
||||
<vxe-table-column
|
||||
min-width="80"
|
||||
min-width="70"
|
||||
v-for="problem in contestProblems"
|
||||
:key="problem.displayId"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue