|
@@ -7,7 +7,6 @@
|
|
|
v-model="filter.subject"
|
|
|
@on-change="subjectChange"
|
|
|
placeholder="科目"
|
|
|
- clearable
|
|
|
>
|
|
|
<Option
|
|
|
v-for="(item, index) in subjects"
|
|
@@ -62,7 +61,7 @@
|
|
|
</FormItem>
|
|
|
<FormItem>
|
|
|
<Input
|
|
|
- v-model.trim="filter.name"
|
|
|
+ v-model.trim="filter.studentName"
|
|
|
placeholder="输入姓名"
|
|
|
clearable
|
|
|
></Input>
|
|
@@ -119,7 +118,7 @@ export default {
|
|
|
return {
|
|
|
filter: {
|
|
|
workId: this.$route.params.workId,
|
|
|
- name: "",
|
|
|
+ studentName: "",
|
|
|
areaCode: "",
|
|
|
startNumber: null,
|
|
|
endNumber: null,
|
|
@@ -194,9 +193,9 @@ export default {
|
|
|
typeChange() {
|
|
|
if (this.paperType === "1") {
|
|
|
this.filter.isManual = true;
|
|
|
- this.filter.missing = false;
|
|
|
+ this.filter.missing = null;
|
|
|
} else if (this.paperType === "0") {
|
|
|
- this.filter.isManual = false;
|
|
|
+ this.filter.isManual = null;
|
|
|
this.filter.missing = true;
|
|
|
} else {
|
|
|
this.filter.isManual = null;
|