|
@@ -60,6 +60,21 @@
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="题卡类型:">
|
|
|
+ <el-select
|
|
|
+ v-model="filter.cardType"
|
|
|
+ style="width: 120px"
|
|
|
+ placeholder="题卡类型"
|
|
|
+ clearable
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="(val, key) in PUSH_CARD_TYPE"
|
|
|
+ :key="key"
|
|
|
+ :value="key"
|
|
|
+ :label="val"
|
|
|
+ ></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-date-picker
|
|
|
v-model="createTime"
|
|
@@ -233,7 +248,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { PUSH_TYPE } from "@/constants/enumerate";
|
|
|
+import { PUSH_TYPE, PUSH_CARD_TYPE } from "@/constants/enumerate";
|
|
|
import { printPlanPushListQuery, printPlanCheckSyncMode } from "../api";
|
|
|
import PrintPlanBatchPushDialog from "../components/PrintPlanBatchPushDialog.vue";
|
|
|
import DataSyncDialog from "../../stmms/components/DataSyncDialog.vue";
|
|
@@ -255,6 +270,7 @@ export default {
|
|
|
},
|
|
|
filterInfo: { semesterName: "", examName: "" },
|
|
|
PUSH_TYPE,
|
|
|
+ PUSH_CARD_TYPE,
|
|
|
current: 1,
|
|
|
size: this.GLOBAL.pageSize,
|
|
|
total: 0,
|