12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145 |
- <template>
- <div class="app-container">
- <el-row>
- <!--用户数据-->
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch">
- <el-form-item label="考试名称" prop="examCollectionName">
- <el-input
- v-model="queryParams.examCollectionName"
- placeholder="请输入考试名称"
- clearable
- style="width: 240px"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <!-- <el-form-item label="考试状态" prop="examCollectionState">
- <el-select
- v-model="queryParams.status"
- placeholder="考试状态"
- clearable
- style="width: 200px"
- >
- <el-option
- v-for="dict in dict.type.sys_normal_disable"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- />
- </el-select>
- </el-form-item> -->
- <el-form-item label="考试时间">
- <el-date-picker
- v-model="dateRange"
- style="width: 260px"
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- </el-form-item>
- <el-form-item label="模拟器类型" prop="simType">
- <el-select
- v-model="queryParams.simType"
- placeholder="模拟器类型"
- clearable
- style="width: 240px"
- >
- <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="创建时间">
- <el-date-picker
- style="width: 260px"
- value-format="yyyy-MM-dd"
- type="daterange"
- range-separator="-"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- ></el-date-picker>
- </el-form-item>
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
-
- >新增</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- plain
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- >修改</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- >删除</el-button>
- </el-col>
- <!-- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-s-operation"
- size="mini"
- :disabled="single"
- @click="handleKaoshi"
- >当前考试</el-button>
- </el-col> -->
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="50" align="center" />
- <el-table-column label="编号" align="center" key="examCollectionId" prop="examCollectionId" v-if="columns[0].visible" width="80"/>
- <el-table-column label="考试名称" align="center" key="examCollectionName" prop="examCollectionName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
- <el-table-column label="考试时长" align="center" key="limitDuration" prop="limitDuration" v-if="columns[2].visible" :show-overflow-tooltip="true" width="100"/>
- <el-table-column label="考试时间" align="center" key="kaoshiTime" prop="kaoshiTime" v-if="columns[3].visible" :show-overflow-tooltip="true" >
- <template slot-scope="scope">
- <span>{{scope.row.startTime}}</span> ~ <span>{{scope.row.endTime}}</span>
- </template>
- </el-table-column>
- <el-table-column label="模拟器类型" align="center" key="simType" prop="simType" v-if="columns[4].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="createBy" prop="createBy" v-if="columns[5].visible" :show-overflow-tooltip="true" width="100" />
- <el-table-column label="考试状态" align="center" key="examCollectionState" v-if="columns[6].visible" width="100">
- <template slot-scope="scope">
- <el-switch
- v-model="scope.row.examCollectionState"
- active-value="2"
- inactive-value="3"
- @change="handleStatusChange(scope.row)"
- ></el-switch>
- </template>
- </el-table-column>
- <el-table-column label="创建时间" align="center" prop="createTime" v-if="columns[7].visible" width="160">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.createTime) }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="操作"
- align="center"
- width="160"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- >删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- </el-row>
- <!-- 添加或修改用户配置对话框 -->
- <el-dialog :title="title" :visible.sync="open" width="75%" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="80px" >
- <el-row>
- <el-col :span="8">
- <el-form-item label="考试名称" prop="examCollectionName">
- <el-input placeholder="请输入考试名称" maxlength="30" v-model="form.examCollectionName" style="width: 65%;"/>
- </el-form-item>
- </el-col>
- <el-col :span="8" >
- <el-form-item label="型号" prop="simType">
- <el-select v-model="form.simType" placeholder="请选择模拟器类型" style="width: 65%;">
- <el-option
- v-for="dict in dict.type.sim_sim_type"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="考试时间" prop="examTime">
- <el-date-picker type="daterange" v-model="form.examTime" format="yyyy-MM-dd"
- value-format="yyyy-MM-dd" :style="{width: '100%'}" start-placeholder="开始时间" end-placeholder="结束时间"
- range-separator="至" clearable></el-date-picker>
- </el-form-item>
- </el-col>
-
- <el-col :span="8">
- <el-form-item label="考试时长" prop="limitDuration">
- <el-input v-model="form.limitDuration" placeholder="请输入考试时长" style="width: 65%;">
- <template slot="append">
- <el-button type="primary">
- 单位(分)
- </el-button>
- </template>
- </el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="出题方式" prop="questionSettingMethod">
- <el-select v-model="form.questionSettingMethod" placeholder="请选择出题方式" style="width: 65%;" @change="selectmethod">
- <el-option
- value="请选择"
- >请选择</el-option>
- <el-option
- v-for="dict in dict.type.sim_question_setting_method"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- ></el-option>
- </el-select>
- </el-form-item>
-
- </el-col>
- <el-button type="primary" round @click="handleSelectType" v-show="isShow" style="margin-left: 15px;">自选考题编辑</el-button>
-
- </el-row>
- </el-form>
- <el-descriptions title="班级列表" :column="3" ></el-descriptions>
- <el-row :gutter="20">
- <el-col :xs="24">
- <el-row :gutter="10" class="mb8">
- <!-- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['system:user:add']"
- >添加</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- plain
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['system:user:edit']"
- >修改</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['system:user:remove']"
- >删除</el-button>
- </el-col> -->
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList1" :columns="columns"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="userList1" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="50" align="center" />
- <el-table-column label="区队/班级" align="center" key="className" prop="className" v-if="columns[0].visible" :show-overflow-tooltip="true" />
- <el-table-column label="专业名称" align="center" key="majorName" prop="majorName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
- <el-table-column label="全部学员数量" align="center" key="remark" prop="remark" v-if="columns[2].visible" :show-overflow-tooltip="true" />
- <!-- <el-table-column
- label="操作"
- align="center"
- width="160"
- class-name="small-padding fixed-width"
- >
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['system:user:edit']"
- >修改</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['system:user:remove']"
- >删除</el-button>
- </template>
- </el-table-column> -->
- </el-table>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList1"
- />
- </el-col>
- </el-row>
- <h4 class="h4" style="font-size: 16px;font-weight: bold;margin-left: 2%;">统计情况</h4>
- <div class="shixiang">
- <div>本次考试班级数量:2</div>
- <div>计划参加考试学员数量:34</div>
- <div>每批次考试学员数量:34</div>
- <div>计划考试批次:5</div>
- </div>
- <div slot="footer" class="dialog-footer" style="margin-top: 10%;">
- <el-button type="primary" @click="submitForm" v-if="form.examCollectionId == undefined" >添加考试</el-button>
- <el-button type="primary" @click="submitForm" v-if="form.examCollectionId != undefined" >确定考试</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 自选题目编辑 -->
- <el-dialog :title="title" :visible.sync="selectopen" width="70%" append-to-body>
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
- <el-row>
- <el-col :span="6">
- <el-form-item label="型号">
- <el-select v-model="selectedEquip" placeholder="请选择模拟器型号">
- <el-option
- v-for="dict in dict.type.sim_equip_type"
- :key="dict.value"
- :label="dict.label"
- :value="dict.value"
- ></el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="训练任务">
- <el-select v-model="selectedEquip" placeholder="请选择训练任务">
- <el-option
- value="请选择"
- >请选择</el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <div style="text-align: right;">
- <el-button @click="toggleSelection(tableData_tm)">选择全部</el-button>
- <el-button @click="toggleSelection()">取消选择</el-button>
- </div>
- </el-row>
-
- <el-table
- :data="tableData_tm" border ref="multipleTable" @selection-change="handleSelectionRow"
- :span-method="objectSpanMethod"
- style="width:100%;text-align:center;margin-left:10px; margin-top:10px">
- <el-table-column
- prop="xinghao"
- label="型号">
- </el-table-column>
- <el-table-column
- prop="xianxiang"
- label="故障现象">
- </el-table-column>
- <el-table-column
- prop="name"
- label="故障部位">
- </el-table-column>
- <el-table-column
- type="selection" prop="ids"
- label="ID"
- width="55"></el-table-column>
- </el-table>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
-
- </div>
- </template>
- <style>
- .el-table__header tr th .cell{
- text-align: center;
- }
- .el-table__row .cell {
- text-align: center;
- }
- .shixiang{
- margin-left: 2%;
- height: 30px;
- line-height: 30px;
- padding-left: 0%;
- }
- </style>
- <script>
- import { examTearcherList,examTearcherdel,examTearcheradd,examTearcherupdate,examTearcherGet,examTearcheropen,examTearcherclose} from "@/api/sim/exam";
- export default {
- name: "Exam",
- dicts: ['sim_sim_type','sim_question_setting_method','sys_normal_disable',],
- data() {
- return {
- multipleSelection: [],
- selectedEquip: '',
- // selectmethod:'',
- isShow:false,
- selectedZjEquip: '',
- tableData_tm: [
- {
- ids:1,
- xinghao: 'FZD04B型侦毒器',
- xianxiang: '开机无响应',
- name: '1.电源开关',
- },{
- ids:2,
- name: '2.DC/DC转换芯片',
- },{
- ids:3,
- xianxiang: '开机后按抽气开关,微电机不工作',
- name: '3.微电机',
- },{
- ids:4,
- name: '4.Q2',
- },{
- ids:5,
- xianxiang: '抽气流量不足',
- name: '5.滤网',
- },{
- ids:6,
- name: '6.调速电位器',
- },{
- ids:7,
- xianxiang: '开机后按下加热开关,加热灯不亮,也未加热',
- name: '7.加热指示灯',
- },{
- ids:8,
- name: '8.热敏开关',
- },
- {
- ids:9,
- xianxiang: '不能正常工作',
- name: '9.外壳及零件',
- },{
- ids:10,
- xianxiang: '电压低',
- name: '10.供电模块',
- },{
- ids:11,
- xianxiang: '抽气指示灯不亮',
- name: '11.抽气指示灯',
- },
- {
- ids:21,
- xinghao:'FZB006型毒剂报警器',
- xianxiang: '仪器无法开机',
- name: '1.薄膜开关FPC排线',
- },{
- ids:22,
- name: '2.主控板开机电路',
- },
- {
- ids:23,
- xianxiang: '蜂鸣器自检时,声音异常',
- name: '3.蜂鸣器出声口',
- },{
- ids:24,
- name: '4.接口接线板',
- },{
- ids:25,
- xianxiang: '仪器进入检测界面后,通入检测剂不报警',
- name: '5.检测剂',
- },{
- ids:26,
- name: '6.主控板信号采集电路',
- },
- {
- ids:27,
- xianxiang: '显示屏无显示',
- name: '7.主控板显示屏供电电路',
- },{
- ids:28,
- name: '8.显示屏',
- },
- {
- ids:29,
- xianxiang: '长时间不进入“检测中”',
- name: '9.干燥管',
- },{
- ids:210,
- name: '10.维护管',
- },
- {
- ids:211,
- xianxiang: '不能正常工作',
- name: '11.外壳及零件',
- },{
- ids:212,
- xianxiang: '电压低',
- name: '12.供电模块',
- },{
- ids:213,
- xianxiang: '无法开机',
- name: '13.DC/DC',
- },
-
- {
- ids:31,
- xinghao: '防化兵用毒剂报警器',
- xianxiang: '仪器无法开机',
- name: '1.FFC排线',
- },{
- ids:32,
- name: '2.汇总主控板',
- },{
- ids:33,
- xianxiang: '开机后,显示屏无显示',
- name: '3.显控报警板',
- },{
- ids:34,
- name: '4.显示屏',
- },{
- ids:35,
- xianxiang: '检测状态下模拟剂不报警',
- name: '5.汇总主控板信号采集电路',
- },{
- ids:36,
- name: '6.检测剂',
- },{
- ids:37,
- xianxiang: '长时间不能进入检测状态',
- name: '7.干燥管',
- },{
- ids:38,
- name: '8.维护管',
- },{
- ids:39,
- xianxiang: '固液检测/气体检测模式切换失败',
- name: '9.固液检测单元与主控板连接线',
- },{
- ids:310,
- name: '10.汇总主控板固液通信电路',
- },{
- ids:311,
- name: '11.切换按键',
- },{
- ids:312,
- xianxiang: '有毒有害气体检测模块不报警',
- name: '12.高压驱动板与汇总主控板连接线',
- },{
- ids:313,
- name: '13.汇总主控板毒害模块通信电路',
- },{
- ids:314,
- xianxiang: '不能正常工作',
- name: '14.外壳及零件',
- },{
- ids:315,
- xianxiang: '电压低',
- name: '15.供电模块',
- },{
- ids:316,
- xianxiang: '无法开机',
- name: '16.DC/DC',
- },
- ],
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 用户表格数据
- userList: null,
- // 用户表格数据
- userList1: null,
- // 弹出层标题
- title: "",
- // 部门树选项
- deptOptions: undefined,
- // 是否显示弹出层
- open: false,
- //自检弹出框
- zijianopen:false,
- // 自选题目编辑
- selectopen:false,
- // 默认密码
- initPassword: undefined,
- // 日期范围
- dateRange: [],
- // 岗位选项
- postOptions: [],
- // 角色选项
- roleOptions: [],
- // 表单参数
- form: {
- simType:'',
- questionSettingMethod:'',
- examTime:[],
- startTime:'',
- endTime:'',
- },
- defaultProps: {
- children: "children",
- label: "label"
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- userName: undefined,
- phonenumber: undefined,
- status: undefined,
- deptId: undefined
- },
- // 列信息
- columns: [
- { key: 0, label: `编号`, visible: true },
- { key: 1, label: `考试名称`, visible: true },
- { key: 2, label: `考试时长`, visible: true },
- { key: 3, label: `考试时间`, visible: true },
- { key: 4, label: `模拟器类型`, visible: true },
- { key: 5, label: `考试状态`, visible: true },
- { key: 6, label: `创建老师`, visible: true },
- { key: 7, label: `创建时间`, visible: true }
- ],
- // 表单校验
- rules: {
- examCollectionName: [
- { required: true,
- message: "考试名称不能为空",
- trigger: "blur" },
- ],
- limitDuration:[
- { required: true,
- message: "考试时长不能为空",
- trigger: "blur" },
- ],
- simType: [
- { required: true,
- message: "模拟器型号不能为空",
- trigger: "change"}
- ],
- questionSettingMethod: [
- { required: true,
- message: "出题方式不能为空",
- trigger: "change"}
- ],
- examTime:[{
- required: true,
- type: 'array',
- message: '请选择考试时间',
- trigger: 'change'
- }],
- }
- };
- },
- watch: {
- selectedEquip(newValue) {
- // console.log(newValue);
- // 根据newValue更新tableData
- // this.tableData = this.getNewTableData(newValue);
- // console.log(this.getNewTableData(newValue);
- if(newValue == 1){
- this.tableData_tm = [{
- ids:1,
- xinghao: 'FZD04B型侦毒器',
- xianxiang: '开机无响应',
- name: '1.电源开关',
- },{
- ids:2,
- name: '2.DC/DC转换芯片',
- },{
- ids:3,
- xianxiang: '开机后按抽气开关,微电机不工作',
- name: '3.微电机',
- },{
- ids:4,
- name: '4.Q2',
- },{
- ids:5,
- xianxiang: '抽气流量不足',
- name: '5.滤网',
- },{
- ids:6,
- name: '6.调速电位器',
- },{
- ids:7,
- xianxiang: '开机后按下加热开关,加热灯不亮,也未加热',
- name: '7.加热指示灯',
- },{
- ids:8,
- name: '8.热敏开关',
- },
- {
- ids:9,
- xianxiang: '不能正常工作',
- name: '9.外壳及零件',
- },{
- ids:10,
- xianxiang: '电压低',
- name: '10.供电模块',
- },{
- ids:11,
- xianxiang: '抽气指示灯不亮',
- name: '11.抽气指示灯',
- }];
- }else if(newValue == 2){
- this.tableData_tm = [{
- ids:21,
- xinghao:'FZB006型毒剂报警器',
- xianxiang: '仪器无法开机',
- name: '1.薄膜开关FPC排线',
- },{
- ids:22,
- name: '2.主控板开机电路',
- },
- {
- ids:23,
- xianxiang: '蜂鸣器自检时,声音异常',
- name: '3.蜂鸣器出声口',
- },{
- ids:24,
- name: '4.接口接线板',
- },{
- ids:25,
- xianxiang: '仪器进入检测界面后,通入检测剂不报警',
- name: '5.检测剂',
- },{
- ids:26,
- name: '6.主控板信号采集电路',
- },
- {
- ids:27,
- xianxiang: '显示屏无显示',
- name: '7.主控板显示屏供电电路',
- },{
- ids:28,
- name: '8.显示屏',
- },
- {
- ids:29,
- xianxiang: '长时间不进入“检测中”',
- name: '9.干燥管',
- },{
- ids:210,
- name: '10.维护管',
- },
- {
- ids:211,
- xianxiang: '不能正常工作',
- name: '11.外壳及零件',
- },{
- ids:212,
- xianxiang: '电压低',
- name: '12.供电模块',
- },{
- ids:213,
- xianxiang: '无法开机',
- name: '13.DC/DC',
- }]
- }else if(newValue == 3){
- this.tableData_tm = [{
- ids:31,
- xinghao: '防化兵用毒剂报警器',
- xianxiang: '仪器无法开机',
- name: '1.FFC排线',
- },{
- ids:32,
- name: '2.汇总主控板',
- },{
- ids:33,
- xianxiang: '开机后,显示屏无显示',
- name: '3.显控报警板',
- },{
- ids:34,
- name: '4.显示屏',
- },{
- ids:35,
- xianxiang: '检测状态下模拟剂不报警',
- name: '5.汇总主控板信号采集电路',
- },{
- ids:36,
- name: '6.检测剂',
- },{
- ids:37,
- xianxiang: '长时间不能进入检测状态',
- name: '7.干燥管',
- },{
- ids:38,
- name: '8.维护管',
- },{
- ids:39,
- xianxiang: '固液检测/气体检测模式切换失败',
- name: '9.固液检测单元与主控板连接线',
- },{
- ids:310,
- name: '10.汇总主控板固液通信电路',
- },{
- ids:311,
- name: '11.切换按键',
- },{
- ids:312,
- xianxiang: '有毒有害气体检测模块不报警',
- name: '12.高压驱动板与汇总主控板连接线',
- },{
- ids:313,
- name: '13.汇总主控板毒害模块通信电路',
- },{
- ids:314,
- xianxiang: '不能正常工作',
- name: '14.外壳及零件',
- },{
- ids:315,
- xianxiang: '电压低',
- name: '15.供电模块',
- },{
- ids:316,
- xianxiang: '无法开机',
- name: '16.DC/DC',
- }]
- }
- },
- },
- created() {
- this.getList();
- //this.getDeptTree();
- this.getConfigKey("sys.user.initPassword").then(response => {
- this.initPassword = response.msg;
- });
- },
- methods: {
- selectmethod(value){
- console.log('出题方式:'+value)
- if(value==2 || value==3){
- this.isShow = true;
- }else{
- this.isShow = false;
- }
- },
- objectSpanMethod({ row, column, rowIndex, columnIndex }) {
- // console.log(this.selectedEquip+'@@@')
- //第一列型号
- if(columnIndex === 0) {
- if(this.selectedEquip==2){
- if(rowIndex==0){
- return { rowspan: 13, colspan: 1 };
- }
- return { rowspan: 0, colspan: 0 };
- }else if(this.selectedEquip==3){
- if(rowIndex==0){
- return { rowspan: 16, colspan: 1 };
- }
- return { rowspan: 0, colspan: 0};
- }else{
- if(rowIndex==0){
- return { rowspan: 11, colspan: 1 };
- }else if(rowIndex==11){
- return { rowspan: 13, colspan: 1 };
- }else if(rowIndex==24){
- return { rowspan: 16, colspan: 1 };
- }else{
- return { rowspan: 0, colspan: 0 };
- }
- }
- }
- //第二列故障现象
- if(columnIndex === 1) {
- if(this.selectedEquip==2){
- // console.log(rowIndex+'####')
- if(rowIndex<9 && rowIndex % 2 === 0){
- return { rowspan: 2, colspan: 1 };
- }else if((rowIndex>9&&rowIndex<13)){
- return { rowspan: 1, colspan: 1 };
- }else{
- return { rowspan: 0, colspan: 0 };
- }
- }else if(this.selectedEquip==3){
- if(rowIndex<7 && rowIndex % 2 === 0){
- return { rowspan: 2, colspan: 1 };
- }else if((rowIndex==8)){
- return { rowspan: 3, colspan: 1 };
- }else if(rowIndex==11){
- return { rowspan: 2, colspan: 1 };
- }else if(rowIndex>12 && rowIndex<16){
- return { rowspan: 1, colspan: 1 };
- }else{
- return { rowspan: 0, colspan: 0 };
- }
- }else{
- if(rowIndex<7 && rowIndex % 2 === 0){
- return { rowspan: 2, colspan: 1 };
- }else if((rowIndex>7&&rowIndex<11) || (rowIndex>20&&rowIndex<24) || (rowIndex>36)){
- return { rowspan: 1, colspan: 1 };
- }else if((rowIndex==35) || (rowIndex>10 && rowIndex<20) && rowIndex % 2 === 1){
- return { rowspan: 2, colspan: 1 };
- }else if(rowIndex>23 && rowIndex<32 && rowIndex % 2 === 0){
- return { rowspan: 2, colspan: 1 };
- }else if(rowIndex==32){
- return { rowspan: 3, colspan: 1 };
- }else{
- return { rowspan: 0, colspan: 0 };
- }
- }
-
- }
- //故障部位 和 选择
- if(columnIndex === 2 || columnIndex === 3){
- //return { rowspan: 1, colspan: 1 };
- }
- },
- handleSelectionRow(val) {
- this.multipleSelection = val;
- },
- // 根据选择的option获取新的数据
- // getNewTableData(option) {
- // // 逻辑处理返回新的数据数组
- // return [
- // // ...新数据
- // ];
- // },
- toggleSelection(rows) {
- if (rows) {
- rows.forEach(row => {
- this.$refs.multipleTable.toggleRowSelection(row);
- console.log(row.ids+'###')
- console.log(row.name+'@@@')
- });
- } else {
- this.$refs.multipleTable.clearSelection();
- }
- },
- handleSelectionRow(val) {
- this.multipleSelection = val;
- },
- /** 查询考试列表 */
- getList() {
- this.loading = true;
- examTearcherList(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
- //将返回值注释
- this.userList = response.rows;
- this.total = response.total;
- this.loading = false;
- }
- );
- },
- getList1() {
- this.loading = true;
- listMajor(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
- //将返回值注释
- this.userList1 = response.rows;
- this.total = response.total;
- this.loading = false;
- }
- );
- },
- /** 查询部门下拉树结构 */
- getDeptTree() {
- deptTreeSelect().then(response => {
- this.deptOptions = response.data;
- });
- },
- // 筛选节点
- filterNode(value, data) {
- if (!value) return true;
- return data.label.indexOf(value) !== -1;
- },
- // 节点单击事件
- handleNodeClick(data) {
- this.queryParams.deptId = data.id;
- this.handleQuery();
- },
- // 状态修改
- handleStatusChange(row) {
- console.log(row.examCollectionState);
- let text = row.examCollectionState === "2" ? "开启" : "关闭";
- this.$modal.confirm('确认要"' + text + '""' + row.examCollectionName + '"吗?').then(function() {
- if(row.examCollectionState==2){
- return examTearcherclose(row.examCollectionId,row.examCollectionState);
- }else{
- return examTearcheropen(row.examCollectionId,row.examCollectionState);
- }
- }).then(() => {
- this.$modal.msgSuccess(text + "成功");
- }).catch(function() {
- row.status = row.status === "0" ? "1" : "0";
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.zijianopen = false;
- this.selectopen = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- examCollectionId: undefined,
- examCollectionType:3,
- // deptId: undefined,
- // userName: undefined,
- // password: undefined,
- // phonenumber: undefined,
- // email: undefined,
- // sex: undefined,
- // status: "0",
- // remark: undefined,
- // postIds: [],
- // roleIds: []
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.dateRange = [];
- this.resetForm("queryForm");
- // this.queryParams.deptId = undefined;
- // this.$refs.tree.setCurrentKey(null);
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.examCollectionId);
- this.single = selection.length != 1;
- this.multiple = !selection.length;
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- // getUser().then(response => {
- // this.postOptions = response.posts;
- // this.roleOptions = response.roles;
- this.open = true;
- this.title = "新增考试";
- // this.form.password = this.initPassword;
- // });
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const examCollectionId = row.examCollectionId || this.ids;
- examTearcherGet(examCollectionId).then(response => {
- this.form = response.data;
- this.form.examTime= [response.data.startTime,response.data.endTime];
- // this.postOptions = response.posts;
- // this.roleOptions = response.roles;
- // this.$set(this.form, "postIds", response.postIds);
- // this.$set(this.form, "roleIds", response.roleIds);
- this.open = true;
- this.title = "修改考试";
- // this.form.password = "";
- });
- },
- /** 当前考试查询 */
- handleKaoshi(row) {
- const kaoshiId = row.jobId || 0;
- this.$router.push('/peoples/present/ids/' + kaoshiId)
- },
- /** 总选题目编辑按钮操作 */
- handleSelectType(row) {
- this.reset();
- const userId = row.userId || this.ids;
- // getUser(userId).then(response => {
- // this.form = response.data;
- this.selectopen = true;
- // this.open = false;
- this.title = "选择考题";
- // });
- },
-
- /** 提交按钮 */
- submitForm: function() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if(this.form.examTime){
- const start_time = this.form.examTime[0];
- const end_time = this.form.examTime[1];
- this.form.startTime = start_time;
- this.form.endTime = end_time;
- }
- if (this.form.examCollectionId != undefined) {
- examTearcherupdate(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- examTearcheradd(this.form).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const examCollectionIds = row.examCollectionId || this.ids;
- this.$modal.confirm('是否确认删除编号为"' + examCollectionIds + '"的数据项?').then(function() {
- return examTearcherdel(examCollectionIds);
- }).then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- }).catch(() => {});
- },
- }
- };
- </script>
|