This commit is contained in:
2025-03-06 20:14:04 +08:00
parent 77b5acef0c
commit 53586df263
9 changed files with 846 additions and 468 deletions

View File

@@ -225,7 +225,7 @@ function rowProps(row: ProblemFiltered) {
<n-form :show-feedback="false" inline label-placement="left">
<n-form-item label="题目难度">
<n-select
class="select"
style="width: 120px;"
v-model:value="query.difficulty"
:options="difficultyOptions"
/>
@@ -233,6 +233,7 @@ function rowProps(row: ProblemFiltered) {
<n-form-item>
<n-input
clearable
class="input"
v-model:value="query.keyword"
placeholder="题号或者标题"
/>
@@ -291,4 +292,8 @@ function rowProps(row: ProblemFiltered) {
.select {
width: 120px;
}
.input {
width: 200px;
}
</style>