|
@@ -1,22 +1,24 @@
|
|
<template>
|
|
<template>
|
|
<el-container>
|
|
<el-container>
|
|
<el-main class="el-main-padding">
|
|
<el-main class="el-main-padding">
|
|
- <commonFormVue :form="form" :getExamCondition="getExamCondition">
|
|
|
|
- </commonFormVue>
|
|
|
|
|
|
+ <commonFormVue
|
|
|
|
+ :form="form"
|
|
|
|
+ :getExamCondition="getExamCondition"
|
|
|
|
+ ></commonFormVue>
|
|
<el-col :span="6">
|
|
<el-col :span="6">
|
|
<el-button
|
|
<el-button
|
|
@click="search('clickSelectBtn')"
|
|
@click="search('clickSelectBtn')"
|
|
size="small"
|
|
size="small"
|
|
type="primary"
|
|
type="primary"
|
|
icon="el-icon-search"
|
|
icon="el-icon-search"
|
|
- >查询
|
|
|
|
- </el-button>
|
|
|
|
- <el-button size="small" icon="el-icon-refresh" @click="resetForm">
|
|
|
|
- 重置
|
|
|
|
- </el-button>
|
|
|
|
|
|
+ >查询</el-button
|
|
|
|
+ >
|
|
|
|
+ <el-button size="small" icon="el-icon-refresh" @click="resetForm"
|
|
|
|
+ >重置</el-button
|
|
|
|
+ >
|
|
</el-col>
|
|
</el-col>
|
|
- <el-row class="margin-top-10"
|
|
|
|
- ><el-col :span="24">
|
|
|
|
|
|
+ <el-row class="margin-top-10">
|
|
|
|
+ <el-col :span="24">
|
|
<el-table
|
|
<el-table
|
|
v-loading="tableLoading"
|
|
v-loading="tableLoading"
|
|
element-loading-text="数据加载中"
|
|
element-loading-text="数据加载中"
|
|
@@ -25,18 +27,36 @@
|
|
:data="tableData"
|
|
:data="tableData"
|
|
border
|
|
border
|
|
>
|
|
>
|
|
- <el-table-column sortable label="学习中心" prop="orgName">
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column sortable label="姓名" prop="studentName">
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column sortable label="身份证号" prop="identityNumber">
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column sortable label="学号" prop="studentCode">
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column sortable label="课程" prop="courseName">
|
|
|
|
- </el-table-column>
|
|
|
|
- <el-table-column sortable label="课程层次" prop="courseLevel">
|
|
|
|
- </el-table-column>
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ sortable
|
|
|
|
+ label="学习中心"
|
|
|
|
+ prop="orgName"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ sortable
|
|
|
|
+ label="姓名"
|
|
|
|
+ prop="studentName"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ sortable
|
|
|
|
+ label="身份证号"
|
|
|
|
+ prop="identityNumber"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ sortable
|
|
|
|
+ label="学号"
|
|
|
|
+ prop="studentCode"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ sortable
|
|
|
|
+ label="课程"
|
|
|
|
+ prop="courseName"
|
|
|
|
+ ></el-table-column>
|
|
|
|
+ <el-table-column
|
|
|
|
+ sortable
|
|
|
|
+ label="课程层次"
|
|
|
|
+ prop="courseLevel"
|
|
|
|
+ ></el-table-column>
|
|
<el-table-column label="操作" width="120">
|
|
<el-table-column label="操作" width="120">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
<el-button
|
|
@@ -44,8 +64,8 @@
|
|
type="primary"
|
|
type="primary"
|
|
@click="openReexamineDialog(scope.row.examStudentId)"
|
|
@click="openReexamineDialog(scope.row.examStudentId)"
|
|
icon="el-icon-refresh"
|
|
icon="el-icon-refresh"
|
|
- >设置重考
|
|
|
|
- </el-button>
|
|
|
|
|
|
+ >设置重考</el-button
|
|
|
|
+ >
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
@@ -58,9 +78,10 @@
|
|
:page-size="form.pageSize"
|
|
:page-size="form.pageSize"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
:total="total"
|
|
:total="total"
|
|
- >
|
|
|
|
- </el-pagination></div></el-col
|
|
|
|
- ></el-row>
|
|
|
|
|
|
+ ></el-pagination>
|
|
|
|
+ </div>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
<el-dialog
|
|
<el-dialog
|
|
title="设置重考"
|
|
title="设置重考"
|
|
:visible.sync="dialogFormVisible"
|
|
:visible.sync="dialogFormVisible"
|
|
@@ -83,8 +104,7 @@
|
|
:key="item.name"
|
|
:key="item.name"
|
|
:label="item.desc"
|
|
:label="item.desc"
|
|
:value="item.name"
|
|
:value="item.name"
|
|
- >
|
|
|
|
- </el-option>
|
|
|
|
|
|
+ ></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="详情描述" style="margin-top:15px;">
|
|
<el-form-item label="详情描述" style="margin-top:15px;">
|
|
@@ -93,8 +113,7 @@
|
|
type="textarea"
|
|
type="textarea"
|
|
:autosize="{ minRows: 6, maxRows: 10 }"
|
|
:autosize="{ minRows: 6, maxRows: 10 }"
|
|
placeholder="请输入内容"
|
|
placeholder="请输入内容"
|
|
- >
|
|
|
|
- </el-input>
|
|
|
|
|
|
+ ></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<div class="dialog-footer margin-top-10 text-center">
|
|
<div class="dialog-footer margin-top-10 text-center">
|
|
<el-button type="primary" @click="doSetReexamine">确 定</el-button>
|
|
<el-button type="primary" @click="doSetReexamine">确 定</el-button>
|
|
@@ -132,7 +151,8 @@ export default {
|
|
studentName: null,
|
|
studentName: null,
|
|
isWarn: null,
|
|
isWarn: null,
|
|
pageNo: 1,
|
|
pageNo: 1,
|
|
- pageSize: 10
|
|
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ ORG_FIND_ALL: false //查询所有机构
|
|
},
|
|
},
|
|
reexamineForm: {
|
|
reexamineForm: {
|
|
examStudentId: "",
|
|
examStudentId: "",
|
|
@@ -171,12 +191,13 @@ export default {
|
|
livenessSuccessPercentLower: null,
|
|
livenessSuccessPercentLower: null,
|
|
livenessSuccessPercentUpper: null,
|
|
livenessSuccessPercentUpper: null,
|
|
identityNumber: null,
|
|
identityNumber: null,
|
|
- orgId: null,
|
|
|
|
|
|
+ orgId: this.form.ORG_FIND_ALL ? null : this.form.orgId,
|
|
studentCode: null,
|
|
studentCode: null,
|
|
studentName: null,
|
|
studentName: null,
|
|
isWarn: null,
|
|
isWarn: null,
|
|
pageNo: 1,
|
|
pageNo: 1,
|
|
- pageSize: 10
|
|
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ ORG_FIND_ALL: this.form.ORG_FIND_ALL
|
|
};
|
|
};
|
|
},
|
|
},
|
|
search(type) {
|
|
search(type) {
|