update frontend
This commit is contained in:
parent
9f80f4b1a0
commit
c7af23949c
|
@ -1147,6 +1147,9 @@ export default {
|
|||
color: #409eff;
|
||||
cursor: pointer;
|
||||
margin-right: 3px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.container .comment .reply .item .reply-content .reply-text {
|
||||
margin-left: 5px;
|
||||
|
@ -1154,10 +1157,14 @@ export default {
|
|||
color: #333;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
width: 32px;
|
||||
}
|
||||
.container .comment .reply .item .reply-content .to-name {
|
||||
color: #409eff;
|
||||
margin-right: 5px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.container .comment .reply .item .reply-bottom {
|
||||
display: flex;
|
||||
|
|
|
@ -1113,7 +1113,6 @@ export default {
|
|||
this.$router.push(route);
|
||||
},
|
||||
onChangeLang(newLang) {
|
||||
if (this.code.trim() != '') {
|
||||
if (this.code == this.problemData.codeTemplate[this.language]) {
|
||||
//原语言模板未变化,只改变语言
|
||||
if (this.problemData.codeTemplate[newLang]) {
|
||||
|
@ -1122,7 +1121,6 @@ export default {
|
|||
this.code = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
this.language = newLang;
|
||||
},
|
||||
onChangeTheme(newTheme) {
|
||||
|
|
|
@ -103,7 +103,7 @@
|
|||
<vxe-table-column
|
||||
field="categoryName"
|
||||
:title="$t('m.Category')"
|
||||
min-width="100"
|
||||
min-width="130"
|
||||
align="center"
|
||||
>
|
||||
<template v-slot="{ row }">
|
||||
|
|
Loading…
Reference in New Issue