|
|
@@ -72,7 +72,9 @@
|
|
|
sortable
|
|
|
centered
|
|
|
>
|
|
|
- <span class="tag is-success"> {{ props.row.difficulty }} </span>
|
|
|
+ <span class="tag is-success">
|
|
|
+ {{ props.row.difficulty == 1 ? "简单" : "困难" }}
|
|
|
+ </span>
|
|
|
</b-table-column>
|
|
|
|
|
|
<b-table-column
|
|
|
@@ -81,7 +83,7 @@
|
|
|
sortable
|
|
|
centered
|
|
|
>
|
|
|
- {{ props.row.expectTime }}
|
|
|
+ {{ props.row.expectTime }}分钟
|
|
|
</b-table-column>
|
|
|
<b-table-column label="题目标签">
|
|
|
{{ props.row.assignmentType.value }}
|
|
|
@@ -177,11 +179,11 @@ export default {
|
|
|
.data-table {
|
|
|
width: 100%;
|
|
|
padding: 30px;
|
|
|
+ min-height: 80vh;
|
|
|
background-color: #ffffff;
|
|
|
}
|
|
|
.question-list {
|
|
|
margin-top: 30px;
|
|
|
- font-size: 0.9rem;
|
|
|
}
|
|
|
.form-group {
|
|
|
display: flex;
|