| | |
| | | <template> |
| | | <div class="app-container"> |
| | | <el-form :model="queryParam" ref="queryForm" :inline="true"> |
| | | <el-form-item label="试卷ID:"> |
| | | <el-input v-model="queryParam.id" clearable @input="search"></el-input> |
| | | <el-form-item label="试卷名称:"> |
| | | <el-input v-model="queryParam.name" size="small" clearable @input="search"></el-input> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" @click="submitForm" size="small">查询</el-button> |
| | |
| | | data() { |
| | | return { |
| | | queryParam: { |
| | | id: null, |
| | | name: null, |
| | | level: null, |
| | | subjectId: null, |
| | | pageIndex: 1, |