【修改】换题界面搜索试题关键字改为试题内容

【新增】出题界面排序,修改图标
This commit is contained in:
YOHO\20373
2025-06-24 10:34:24 +08:00
committed by 陆光LG
parent 49a8b7a645
commit a69e180506
9 changed files with 701 additions and 283 deletions

View File

@@ -203,8 +203,8 @@
style="flex: 1; min-width: 180px;"
/>
<el-input
v-model="queryParams.keywords"
placeholder="试题关键字"
v-model="queryParams.content"
placeholder="试题内容"
clearable
style="flex: 1; min-width: 180px;"
/>
@@ -415,6 +415,7 @@ const queryParams = reactive({
pointNames: "",
subjectName: "",
quNum:"",
content:"",
chapteridDictText:"",
pageNo: 1,
pageSize: 10,
@@ -422,7 +423,6 @@ const queryParams = reactive({
status:"0",
specialtyName:"",
courseName:"",
keywords:""
})
const emit = defineEmits(['done']);
const visible = defineModel({ type: Boolean }); // 对应 v-model
@@ -478,7 +478,7 @@ const resetSearch = () => {
queryParams.pointNames = '';
queryParams.quLevel = '';
queryParams.quNum = '';
queryParams.keywords= "",
queryParams.content= "",
queryParams.pageNo = 1;
getList();
};

View File

@@ -203,8 +203,8 @@
style="flex: 1; min-width: 180px;"
/>
<el-input
v-model="queryParams.keywords"
placeholder="试题关键字"
v-model="queryParams.content"
placeholder="试题内容"
clearable
style="flex: 1; min-width: 180px;"
/>
@@ -415,7 +415,7 @@ const queryParams = reactive({
pointNames: "",
subjectName: "",
quNum:"",
keywords:"",
content:"",
chapteridDictText:"",
pageNo: 1,
pageSize: 10,
@@ -478,7 +478,7 @@ const resetSearch = () => {
queryParams.pointNames = '';
queryParams.quLevel = '';
queryParams.quNum = '';
queryParams.keywords= "",
queryParams.content= "",
queryParams.pageNo = 1;
getList();
};

View File

@@ -202,9 +202,9 @@
clearable
style="flex: 1; min-width: 180px;"
/>
<el-input
v-model="queryParams.keywords"
placeholder="试题关键字"
<el-input
v-model="queryParams.content"
placeholder="试题内容"
clearable
style="flex: 1; min-width: 180px;"
/>
@@ -415,6 +415,7 @@ const queryParams = reactive({
pointNames: "",
subjectName: "",
quNum:"",
content:"",
chapteridDictText:"",
pageNo: 1,
pageSize: 10,
@@ -422,7 +423,6 @@ const queryParams = reactive({
status:"0",
specialtyName:"",
courseName:"",
keywords:""
})
const emit = defineEmits(['done']);
const visible = defineModel({ type: Boolean }); // 对应 v-model
@@ -478,7 +478,7 @@ const resetSearch = () => {
queryParams.pointNames = '';
queryParams.quLevel = '';
queryParams.quNum = '';
queryParams.keywords= "",
queryParams.content= "",
queryParams.pageNo = 1;
getList();
};