|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
<el-row>
|
|
|
- <!--考试成绩数据1-->
|
|
|
+ <!--考试成绩数据-->
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
<el-form-item label="学员学号" prop="userName">
|
|
|
<el-input
|
|
@@ -21,14 +21,21 @@
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="模拟器类型" prop="userName">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.userName"
|
|
|
- placeholder="请输入模拟器类型"
|
|
|
+ <el-form-item label="模拟器型号" prop="simType">
|
|
|
+ <el-select
|
|
|
+ v-model="queryParams.simType"
|
|
|
+ placeholder="模拟器型号"
|
|
|
clearable
|
|
|
style="width: 240px"
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
- />
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="dict in dict.type.sim_sim_type"
|
|
|
+ :key="dict.value"
|
|
|
+ :label="dict.label"
|
|
|
+ :value="dict.value"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="区队/班级" prop="userName">
|
|
|
<el-input
|
|
@@ -71,7 +78,11 @@
|
|
|
<!-- <el-table-column type="selection" width="50" align="center" /> -->
|
|
|
<el-table-column label="学员学号" align="center" key="userName" prop="userName" v-if="columns[0].visible" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="学员姓名" align="center" key="kaoshiTime" prop="kaoshiTime" v-if="columns[1].visible" :show-overflow-tooltip="true" />
|
|
|
- <el-table-column label="模拟器类型" align="center" key="liexing" prop="liexing" v-if="columns[2].visible" :show-overflow-tooltip="true" />
|
|
|
+ <el-table-column label="模拟器型号" align="center" key="simType" prop="simType" v-if="columns[2].visible" :show-overflow-tooltip="true" >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <dict-tag class="text-navy" :options="dict.type.sim_sim_type" :value="scope.row.simType"/>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="区队/班级" align="center" key="banji" prop="banji" v-if="columns[3].visible" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="专业名称" align="center" key="zhuanye" prop="zhuanye" v-if="columns[4].visible" :show-overflow-tooltip="true" />
|
|
|
<el-table-column label="考试名称" align="center" key="kaoshi" prop="kaoshi" v-if="columns[5].visible" :show-overflow-tooltip="true" />
|
|
@@ -101,7 +112,7 @@ import { listUser, getUser, delUser, addUser, updateUser, resetUserPwd, changeUs
|
|
|
import { getToken } from "@/utils/auth";
|
|
|
|
|
|
export default {
|
|
|
- dicts: ['sim_equip_type'],
|
|
|
+ dicts: ['sim_sim_type'],
|
|
|
data() {
|
|
|
return {
|
|
|
// 遮罩层
|