| | |
| | | <el-option label="计算题" value="7"></el-option> |
| | | <el-option label="分析题" value="8"></el-option> |
| | | </el-select> |
| | | <el-input v-model="pageParam.examName" placeholder="请输入试卷名称" maxlength="20" clearable @input="searchData"/> |
| | | <el-input v-model="pageParam.examName" placeholder="请输入考试名称" maxlength="20" clearable @input="searchData"/> |
| | | <el-button type="primary" class="ml-4" @click="searchData">搜索</el-button> |
| | | </div> |
| | | </div> |
| | |
| | | <div class="card-footer flex justify-center mb-7 shrink-0"> |
| | | <el-pagination background layout="prev, pager, next" |
| | | :total="pageParam.total" |
| | | :page-size="10" |
| | | :page-size="pageParam.pageSize" |
| | | :current-page="pageParam.pageIndex" |
| | | @current-change="handleCurrentChange"/> |
| | | </div> |
| | |
| | | |
| | | const dataList = ref([]); |
| | | const loading = ref(false); |
| | | const currentData = ref([]); |
| | | |
| | | // 分页参数 |
| | | const pageParam = { |