| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385 |
- <template>
- <div class="app-container" >
- <el-form :inline="true" :model="deviceParams" label-width="68px">
- <el-form-item :label="$t('年份')" prop="year">
- <el-date-picker v-model="deviceParams.year" :placeholder="$t('请选择')+$t('年份')" clearable
- size="small"
- style="width: 200px"
- type="year"
- value-format="yyyy">
- </el-date-picker>
- </el-form-item>
- <el-form-item :label="$t('培训类型')" prop="trainingType">
- <el-select v-model="deviceParams.trainingType" :placeholder="$t('请选择') + $t('培训类型')" clearable
- size="small">
- <el-option
- v-for="dict in trainingTypeOptions"
- :key="dict.dictValue"
- :label="dict.dictLabel"
- :value="dict.dictValue"
- />
- </el-select>
- </el-form-item>
- <el-button icon="el-icon-search" size="mini" style="margin-left: 20px;" type="cyan" @click="handleDeviceQuery">
- {{ $t('搜索') }}
- </el-button>
- <el-button icon="el-icon-download" size="mini" style="margin-left: 10px;" type="success" @click="handleSnapshotData" :disabled="!devicelevelList || devicelevelList.length === 0">
- {{ $t('固定数据') }}
- </el-button>
- <el-button icon="el-icon-view" size="mini" style="margin-left: 10px;" type="primary" @click="handleViewSnapshot">
- {{ $t('查看快照') }}
- </el-button>
- <el-button icon="el-icon-download" size="mini" style="margin-left: 10px;" type="success" @click="exportToExcel" :disabled="!devicelevelList || devicelevelList.length === 0 || deviceTrainingLoad">
- {{ $t('导出Excel') }}
- </el-button>
- <el-button icon="el-icon-arrow-down" size="mini" style="margin-left: 10px;" type="primary" @click="increaseHeight">
- 增加高度
- </el-button>
- <el-row style="text-align: right">
- <svg-icon class="rectangleGreen" icon-class="rectangleGreen"></svg-icon>
- <span>{{ $t('需参加培训,已经完成培训人员') }}</span>
- <svg-icon class="rectangleRed" icon-class="rectanglered"></svg-icon>
- <span style="line-height: 40px">{{ $t('需参加培训,尚未进行培训人员') }}</span>
- <span style="line-height: 40px;margin-left: 22px;">╳ 需要参加培训</span>
- <span style="line-height: 40px;margin-left: 22px;">⚪ 不需要参加培训</span>
- </el-row>
- </el-form>
- <vue-draggable-resizable
- :draggable="dragMove"
- h="auto"
- style="background-color:white"
- w="auto"
- :w="vdr.width"
- :h="vdr.height"
- :min-width="500"
- :min-height="300"
- @activated="onVdrActivated"
- @deactivated="onVdrDeactivated"
- @dragstop="onVdrDragStop"
- @resizestop="onVdrResizeStop"
- :x="vdr.x"
- :y="vdr.y"
- >
- <div ref="branch" class="zoom" @wheel.prevent="handleTableWheel($event)">
- <el-table v-if="tableShow" ref="deviceTable" v-loading="deviceTrainingLoad"
- :cell-class-name="tableCellClassName"
- :data="devicelevelList" :span-method="colspanDeviceMethod"
- border
- :height="clientHeight"
- class="companyLevelTable">
- <el-table-column :label="$t('课程代码')" align="center" fixed width="100">
- <template slot-scope="scope">
- {{ scope.row[0] }}
- </template>
- </el-table-column>
- <el-table-column :label="$t('装置级') +$t('空格') + $t('培训课程')+$t('空格') + $t('名称')" align="center"
- fixed width="250">
- <template slot-scope="scope">
- {{ scope.row[1] }}
- </template>
- </el-table-column>
- <el-table-column v-for="(item, index) in deviceStaffmgrs" :key="index" :label="item.actualpost" align="center"
- width="150">
- <el-table-column :key="index" :label="item.name" align="center" width="150">
- <template slot-scope="scope">
- {{ scope.row[index + 2] }}
- </template>
- </el-table-column>
- </el-table-column>
- </el-table>
- </div>
- </vue-draggable-resizable>
- <!-- 用户导入对话框 -->
- <el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
- <el-upload
- ref="upload"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="upload.headers"
- :action="upload.url"
- :disabled="upload.isUploading"
- :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate">下载模板</el-link>
- </div>
- </el-upload>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 数据快照对话框 -->
- <el-dialog title="创建数据快照" :visible.sync="snapshotDialog.visible" width="500px" append-to-body>
- <el-form ref="snapshotForm" :model="snapshotDialog.form" :rules="snapshotDialog.rules" label-width="100px">
- <el-form-item label="快照名称" prop="snapshotName">
- <el-input v-model="snapshotDialog.form.snapshotName" placeholder="请输入快照名称,如:2024年培训数据快照" />
- </el-form-item>
- <el-form-item label="快照描述" prop="description">
- <el-input type="textarea" v-model="snapshotDialog.form.description" placeholder="请输入快照描述,说明此快照的用途和内容" :rows="3" />
- </el-form-item>
- <el-form-item label="快照年份" prop="snapshotYear">
- <el-date-picker v-model="snapshotDialog.form.snapshotYear" type="year" value-format="yyyy" placeholder="选择快照年份" />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitSnapshotData">确 定</el-button>
- <el-button @click="snapshotDialog.visible = false">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- addTrainingrecords,
- delTrainingrecords,
- exportTrainingrecords,
- exportTrainingTime,
- getTrainingrecords,
- listTrainingrecords,
- updateTrainingrecords
- } from "@/api/training/trainingrecords";
- import {listTraining} from "@/api/training/worklicense";
- import {companyListParticipants, delParticipants, listParticipants} from "@/api/training/participants";
- import {deviceListParticipants, listDevice} from "@/api/training/device";
- import {devicebccListParticipants} from "@/api/training/bccdevice";
- import {treeselect} from "@/api/system/dept";
- import {selectTimeStaffmgr} from "@/api/plant/staffmgr";
- import {getToken} from "@/utils/auth";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import {addCommonfile, allFileList, delCommonfile, updateCommonfile} from "@/api/common/commonfile";
- import VueDraggableResizable from 'vue-draggable-resizable';
- import { createSnapshot, querySnapshot } from '@/api/training/snapshot';
- export default {
- name: "records",
- components: {Treeselect, VueDraggableResizable},
- mounted() {
- window.onresize = () => { //写在mounted中,onresize事件会在页面大小被调整时触发
- return (() => {
- window.screenHeight = document.body.clientHeight - 155;
- this.height = window.screenHeight;
- // 同步容器尺寸
- this.vdr.width = document.body.clientWidth - 80;
- this.vdr.height = (document.body.clientHeight - 80) * 0.8;
- this.$nextTick(() => {
- if (this.$refs.deviceTable) this.$refs.deviceTable.doLayout();
- });
- })();
- };
- },
- data() {
- return {
- height: document.body.clientHeight - 155,
- dragMove: true,
- transTitle: [], // transTitle 该标题为转化后的标题, 注意多一列, 因为原来的标题变成了竖着显示了, 所以多一列标题, 第一个为空即可
- companyStaffmgrs: [],
- deviceStaffmgrs: [],
- companylevelList: [],
- devicelevelList: [],
- devicelevelListTemp: [],
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: false,
- // 总条数
- total: 0,
- // 培训成绩表格数据
- trainingrecordsList: [],
- // 人员-公司级培训关系表格数据
- participantsList: [],
- // 人员-装置级培训关系表格数据
- devicceList: [],
- //上岗证培训列表
- worklicenseList: [],
- // 弹出层标题
- title: "",
- companyTitle: "",
- deviceTitle: "",
- companyTrainingTitle: "",
- trainingTimeTitle: "",
- deviceTrainingTitle: "",
- worklicenseTitle: "",
- // 部门树选项
- deptOptions: undefined,
- clientHeight: 300,
- // 是否显示弹出层
- open: false,
- companyOpen: false,
- deviceOpen: false,
- companyTrainingOpen: false,
- deviceTrainingOpen: false,
- worklicenseOpen: false,
- companyTrainingLoad: false,
- deviceTrainingLoad: false,
- tableShow: true,
- trainingTimeOpen: false,
- // 可拖拽缩放容器状态
- vdr: {
- x: 0,
- y: 0,
- width: document.body.clientWidth - 80,
- height: (document.body.clientHeight - 80) * 0.8,
- minWidth: 600,
- minHeight: 300
- },
- // 装置名称字典
- plantCodeOptions: [],
- // 班值字典
- classesOptions: [],
- // SUB字典
- subOptions: [],
- // 裂解字典
- crackingOptions: [],
- // 热区字典
- hotareaOptions: [],
- // 冷区字典
- coldareaOptions: [],
- // AEU/PGU字典
- aeupguOptions: [],
- // 入职字典
- onboardOptions: [],
- // TDS字典
- tdsOptions: [],
- // 上岗证复证字典
- postCardOptions: [],
- // 工艺培训字典
- craftOptions: [],
- //公司级培训字典
- companyOptions: [],
- //装置级培训字典
- deviceOptions: [],
- // 培训岗位字典
- positionOptions: [],
- //培训类型字典
- trainingTypeOptions: [],
- //点击查看的员工号
- employeeid: '',
- // 用户导入参数
- upload: {
- downloadAction: process.env.VUE_APP_BASE_API + '/common/template',
- //下载模板类型
- type: "trainingrecords",
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: {Authorization: "Bearer " + getToken()},
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/training/trainingrecords/importData"
- },
- // 报告附件参数
- doc: {
- file: "",
- // 是否显示弹出层(报告附件)
- open: false,
- // 弹出层标题(报告附件)
- title: this.$t('附件'),
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 报告附件上传位置编号
- ids: 0,
- // 设置上传的请求头部
- headers: {Authorization: "Bearer " + getToken()},
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/common/commonfile/uploadFile",
- commonfileList: null,
- queryParams: {
- pId: null,
- pType: 'traning'
- },
- pType: 'traning',
- pId: null,
- form: {}
- },
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 20,
- name: null,
- employeeid: null,
- classes: null,
- sortDate: null,
- sortOrder: null,
- onboard: null,
- tds: null,
- postCard: null,
- craft: null,
- company: null
- },
- //人员表查询参数
- staffmgrQueryParams: {
- units: this.$constants.DEFAULT_UNITS,
- leftYear: this.getNowTime(),
- },
- queryCompanyParams: {
- staffId: null,
- companyId: null,
- },
- queryDeviceParams: {
- staffId: null,
- regularId: null,
- year: this.getNowTime(),
- trainingType: null
- },
- deviceParams: {
- units: this.$constants.DEFAULT_UNITS,
- staffId: null,
- regularId: null,
- year: null,
- trainingType: null
- },
- worklicenseParams: {
- employeeid: null,
- },
- companyQueryParams: {},
- // 表单参数
- form: {},
- pdf: {
- title: '',
- pdfUrl: '',
- numPages: null,
- open: false,
- pageNum: 1,
- pageTotalNum: 1,
- loadedRatio: 0,
- },
- // 表单校验
- rules: {
- plantCode: [
- {required: true, message: this.$t('装置名称') + this.$t('不能为空'), trigger: "change"}
- ],
- year: [
- {required: true, message: this.$t('年份') + this.$t('不能为空'), trigger: "blur"}
- ],
- deptId: [
- {required: true, message: this.$t('部门编号') + this.$t('不能为空'), trigger: "blur"}
- ]
- },
- // 数据快照对话框
- snapshotDialog: {
- visible: false,
- form: {
- snapshotName: '',
- description: '',
- snapshotYear: ''
- },
- rules: {
- snapshotName: [{ required: true, message: '请输入快照名称', trigger: 'blur' }],
- description: [{ required: true, message: '请输入快照描述', trigger: 'blur' }],
- snapshotYear: [{ required: true, message: '请选择快照年份', trigger: 'change' }]
- }
- },
- };
- },
- watch: {
- // 根据名称筛选部门树
- deptName(val) {
- this.$refs.tree.filter(val);
- },
- height(val) { //在watch中监听height,浏览器窗口大小变动时自适应高度。
- this.height = val;
- console.log(this.height, "新的高度");
- },
- },
- created() {
- //设置表格高度对应屏幕高度
- this.$nextTick(() => {
- this.clientHeight = (document.body.clientHeight - 80) * 0.8
- })
- this.getList();
- this.handleDevice();
- this.getStaffmar();
- this.getTreeselect();
- this.getDicts("PLANT_DIVIDE").then(response => {
- this.plantCodeOptions = response.data;
- });
- this.getDicts("TEAM_DIVIDE").then(response => {
- this.classesOptions = response.data;
- });
- this.getDicts("TICK_CROSS").then(response => {
- this.subOptions = response.data;
- });
- this.getDicts("TICK_CROSS").then(response => {
- this.crackingOptions = response.data;
- });
- this.getDicts("TICK_CROSS").then(response => {
- this.hotareaOptions = response.data;
- });
- this.getDicts("TICK_CROSS").then(response => {
- this.coldareaOptions = response.data;
- });
- this.getDicts("TICK_CROSS").then(response => {
- this.aeupguOptions = response.data;
- });
- this.getDicts("TRAINING_QUALIFY").then(response => {
- this.onboardOptions = response.data;
- });
- this.getDicts("TRAINING_QUALIFY").then(response => {
- this.tdsOptions = response.data;
- });
- this.getDicts("TRAINING_QUALIFY").then(response => {
- this.postCardOptions = response.data;
- });
- this.getDicts("TRAINING_QUALIFY").then(response => {
- this.craftOptions = response.data;
- });
- this.getDicts("TRAINING_QUALIFY").then(response => {
- this.companyOptions = response.data;
- });
- this.getDicts("TRAINING_QUALIFY").then(response => {
- this.deviceOptions = response.data;
- });
- this.getDicts("ACTUALPOST").then(response => {
- this.positionOptions = response.data;
- });
- this.getDicts("TRAINING_TYPE_BCC").then(response => {
- this.trainingTypeOptions = response.data;
- });
- },
- methods: {
- handleTableWheel(event) {
- let obj = this.$refs['branch']
- return this.tableZoom(obj, event)
- },
- tableZoom(obj, event) {
- // 一开始默认是100%
- let zoom = parseInt(obj.style.zoom, 10) || 100
- // 滚轮滚一下wheelDelta的值增加或减少120
- zoom += event.wheelDelta / 12
- if (zoom > 25) {
- obj.style.zoom = zoom + '%'
- }
- return false
- },
- // vue-draggable-resizable 相关方法
- onVdrActivated() {
- console.log('容器激活');
- },
- onVdrDeactivated() {
- console.log('容器失活');
- },
- onVdrDragStop(x, y) {
- console.log('拖拽停止:', { x, y });
- this.vdr.x = x;
- this.vdr.y = y;
- },
- // 增加容器高度
- increaseHeight() {
- console.log('增加高度前:', this.vdr.height);
- this.vdr.height += 200; // 每次增加200px
- console.log('增加高度后:', this.vdr.height);
- // 同时更新表格高度
- this.clientHeight = (this.vdr.height - 80) * 0.8;
- console.log('更新表格高度:', this.clientHeight);
- },
- colspanMethod({row, column, rowIndex, columnIndex}) {
- if (columnIndex === 0) {
- const _row = this.setTable(this.companylevelList).merge[rowIndex];
- const _col = _row > 0 ? 1 : 0;
- return {
- rowspan: _row,
- colspan: _col
- };
- }
- if (columnIndex === 1) {
- const _row = this.setTable(this.companylevelList).merge[rowIndex];
- const _col = _row > 0 ? 1 : 0;
- return {
- rowspan: _row,
- colspan: _col
- };
- }
- if (columnIndex === 2) {
- const _row = this.setTable(this.companylevelList).merge[rowIndex];
- const _col = _row > 0 ? 1 : 0;
- return {
- rowspan: _row,
- colspan: _col
- };
- }
- },
- colspanDeviceMethod({row, column, rowIndex, columnIndex}) {
- if (columnIndex === 0) {
- const _row = this.setTable(this.devicelevelList).merge[rowIndex];
- const _col = _row > 0 ? 1 : 0;
- return {
- rowspan: _row,
- colspan: _col
- };
- }
- if (columnIndex === 1) {
- const _row = this.setTable(this.devicelevelList).merge[rowIndex];
- const _col = _row > 0 ? 1 : 0;
- return {
- rowspan: _row,
- colspan: _col
- };
- }
- },
- setTable(tableData) {
- let spanArr = [],
- concat = 0;
- tableData.forEach((item, index) => {
- if (index === 0) {
- spanArr.push(1);
- } else {
- if (item[1] === tableData[index - 1][1] && item[0] === tableData[index - 1][0]) {
- //第一列需合并相同内容的判断条件
- spanArr[concat] += 1;
- spanArr.push(0);
- } else {
- spanArr.push(1);
- concat = index;
- }
- }
- });
- return {
- merge: spanArr
- };
- },
- //根据是否存在最后培训时间显示颜色提示
- tableCellClassName({row, column, rowIndex, columnIndex}) {
- // for (let i = 2; i < this.transTitle.length + 2; i++) {
- // if (columnIndex == i){
- // return this.changeColor(row[i])
- // }
- // }
- return this.changeColor(row[columnIndex])
- },
- changeColor(value) {
- if (value == null) {
- return 'companyNot'
- }
- if (value.trim().startsWith('20')) {
- return 'companyFinish'
- }
- if (value === "-") {
- return 'companyUrgent'
- }
- if (value === "尚未开始培训") {
- return 'companyNot'
- }
- },
- /** 查询培训成绩列表 */
- getList() {
- this.loading = true;
- listTrainingrecords(this.queryParams).then(response => {
- this.trainingrecordsList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- //获取人员表
- getStaffmar() {
- selectTimeStaffmgr(this.staffmgrQueryParams).then(response => {
- const allData = response.rows
- const data = [];
- for (let i = 0; i < allData.length; i++) {
- data.push({
- name: allData[i].name,
- actualpost: this.selectDictLabel(this.positionOptions, allData[i].actualpost),
- trainingTime: allData[i].trainingTime
- });
- }
- this.transTitle = data;
- })
- },
- //获取公司级培训列表
- getCompanyTraining() {
- companyListParticipants(this.companyQueryParams).then(response => {
- this.companylevelList = response.companyLevelList
- const allData = response.staffmgrs
- const data = [];
- for (let i = 0; i < allData.length; i++) {
- data.push({
- name: allData[i].name,
- actualpost: this.selectDictLabel(this.positionOptions, allData[i].actualpost),
- });
- }
- this.companyStaffmgrs = data
- this.companyTrainingLoad = false
- this.$nextTick(() => {
- this.$refs.companyTable.doLayout(); // 解决表格错位
- });
- })
- },
- //获取装置级培训列表
- getDeviceTraining() {
- devicebccListParticipants(this.deviceParams).then(response => {
- this.devicelevelList = response.deviceLevelList
- const allData = response.staffmgrs
- const data = [];
- for (let i = 0; i < allData.length; i++) {
- data.push({
- name: allData[i].name,
- actualpost: this.selectDictLabel(this.positionOptions, allData[i].actualpost),
- });
- }
- this.deviceStaffmgrs = data
- this.deviceTrainingLoad = false
- this.$nextTick(() => {
- this.$refs.deviceTable.doLayout(); // 解决表格错位
- });
- })
- },
- /** 查询部门下拉树结构 */
- getTreeselect() {
- treeselect().then(response => {
- this.deptOptions = response.data;
- });
- },
- // 装置名称字典翻译
- plantCodeFormat(row, column) {
- return this.selectDictLabel(this.plantCodeOptions, row.plantCode);
- },
- // 班值字典翻译
- classesFormat(row, column) {
- return this.selectDictLabel(this.classesOptions, row.classes);
- },
- // SUB字典翻译
- subFormat(row, column) {
- return this.selectDictLabel(this.subOptions, row.sub);
- },
- // 裂解字典翻译
- crackingFormat(row, column) {
- return this.selectDictLabel(this.crackingOptions, row.cracking);
- },
- // 热区字典翻译
- hotareaFormat(row, column) {
- return this.selectDictLabel(this.hotareaOptions, row.hotarea);
- },
- // 冷区字典翻译
- coldareaFormat(row, column) {
- return this.selectDictLabel(this.coldareaOptions, row.coldarea);
- },
- // AEU/PGU字典翻译
- aeupguFormat(row, column) {
- return this.selectDictLabel(this.aeupguOptions, row.aeupgu);
- },
- // 入职字典翻译
- onboardFormat(row, column) {
- return this.selectDictLabel(this.onboardOptions, row.onboard);
- },
- // TDS字典翻译
- tdsFormat(row, column) {
- return this.selectDictLabel(this.tdsOptions, row.tds);
- },
- // 上岗证复证字典翻译
- postCardFormat(row, column) {
- return this.selectDictLabel(this.postCardOptions, row.postCard);
- },
- // 工艺培训字典翻译
- craftFormat(row, column) {
- return this.selectDictLabel(this.craftOptions, row.craft);
- },
- //公司级培训字典翻译
- companyFormat(row, column) {
- return this.selectDictLabel(this.companyOptions, row.company);
- },
- //装置级培训字典翻译
- deviceFormat(row, column) {
- return this.selectDictLabel(this.deviceOptions, row.device);
- },
- // 培训类型翻译
- trainingTypeFormat(row, column) {
- return this.selectDictLabel(this.trainingTypeOptions, row.trainingType);
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- plantCode: null,
- name: null,
- employeeid: null,
- classes: null,
- companysafe: null,
- plantsafe: null,
- teamsafe: null,
- sub: null,
- cracking: null,
- hotarea: null,
- coldarea: null,
- aeupgu: null,
- upscore: null,
- downscore: null,
- delFlag: null,
- createrCode: null,
- createdate: null,
- updaterCode: null,
- updatedate: null,
- remarks: null,
- deptId: null,
- onboard: null,
- tds: null,
- postCard: null,
- craft: null,
- company: null,
- device: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- //搜索按钮
- handleDeviceQuery() {
- this.deviceTrainingLoad = true;
- this.$nextTick(() => {
- this.getDeviceTraining();
- });
- },
- staffDeviceQuery() {
- this.getDevice(this.employeeid)
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length !== 1
- this.multiple = !selection.length
- },
- //根据分数显示颜色提示
- tableCellStyle({row, column, rowIndex, columnIndex}) {
- if (columnIndex === 4 && row.onboard === "2") {
- return "color: rgba(255, 26, 26, 0.98) "
- } else if (columnIndex === 5 && row.tds === "2") {
- return "color: rgba(255, 26, 26, 0.98) "
- } else if (columnIndex === 6 && row.postCard === "2") {
- return "color: rgba(255, 26, 26, 0.98) "
- } else if (columnIndex === 7 && row.craft === "2") {
- return "color: rgba(255, 26, 26, 0.98) "
- } else if (columnIndex === 8 && row.company === "2") {
- return "color: rgba(255, 26, 26, 0.98) "
- }
- },
- //排序
- sortChange(val) {
- if (val.prop == 'companysafe') {
- this.queryParams.sortDate = 'companysafe';
- } else if (val.prop == 'plantsafe') {
- this.queryParams.sortDate = 'plantsafe';
- } else if (val.prop == 'teamsafe') {
- this.queryParams.sortDate = 'teamsafe';
- }
- if (val.order === 'descending') {
- this.queryParams.sortOrder = 'desc'
- } else {
- this.queryParams.sortOrder = 'asc'
- }
- this.getList()
- },
- /** 获取当前年份 */
- getNowTime() {
- var now = new Date();
- var year = now.getFullYear(); //得到年份
- var defaultDate = `${year}`;
- defaultDate = `${year}`
- return defaultDate;
- },
- /** 公司级培训矩阵按钮操作 */
- handleCompany() {
- this.companyTrainingLoad = true
- this.companyTrainingTitle = this.$t('参加') + this.$t('空格') + this.$t('公司级') + this.$t('空格') + this.$t('培训人员') + this.$t('空格') + this.$t('名单')
- this.companyTrainingOpen = true
- // loading.close();
- this.tableShow = true
- setTimeout(() => {
- this.getCompanyTraining();
- }, 10);
- },
- /** 装置级培训矩阵按钮操作 */
- handleDevice() {
- this.deviceTrainingLoad = true
- this.resetForm("queryRegularForm");
- this.deviceTrainingTitle = this.$t('参加') + this.$t('空格') + this.$t('装置级') + this.$t('空格') + this.$t('培训人员') + this.$t('空格') + this.$t('名单')
- this.deviceTrainingOpen = true
- this.tableShow = true
- this.deviceParams.year = this.getNowTime();
- // this.$nextTick(() => {
- // deviceListParticipants(this.deviceParams).then(response => {
- // this.devicelevelListTemp = response;
- // this.devicelevelList = response
- // this.deviceTrainingLoad = false
- // this.$nextTick(() => {
- // this.$refs.deviceTable.doLayout(); // 解决表格错位
- // });
- // })
- // });
- setTimeout(() => {
- this.getDeviceTraining();
- }, 10);
- },
- /** 人员培训时长按钮操作 */
- handleTime() {
- this.trainingTimeOpen = true;
- this.trainingTimeTitle = this.$t('人员培训时长');
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = this.$t('新增') + this.$t('空格') + this.$t('培训成绩');
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const id = row.id || this.ids
- getTrainingrecords(id).then(response => {
- this.form = response.data;
- if (response.data.sub == 10) {
- this.form.sub = true
- }
- if (response.data.cracking == 10) {
- this.form.cracking = true
- }
- if (response.data.hotarea == 10) {
- this.form.hotarea = true
- }
- if (response.data.coldarea == 10) {
- this.form.coldarea = true
- }
- if (response.data.aeupgu == 10) {
- this.form.aeupgu = true
- }
- this.open = true;
- this.title = this.$t('修改') + this.$t('培训成绩');
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.id != null) {
- updateTrainingrecords(this.form).then(response => {
- this.msgSuccess(this.$t('修改成功'));
- this.open = false;
- this.getList();
- });
- } else {
- addTrainingrecords(this.form).then(response => {
- this.msgSuccess(this.$t('新增成功'));
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$confirm(this.$t('是否确认删除?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function () {
- return delTrainingrecords(ids);
- }).then(() => {
- this.getList();
- this.msgSuccess(this.$t('删除成功'));
- })
- },
- /** 公司级培训删除按钮操作 */
- participantsHandleDelete(row) {
- const ids = row.id
- this.$confirm(this.$t('是否确认删除?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function () {
- return delParticipants(ids);
- }).then(() => {
- this.getParticipants(row.staffId)
- this.msgSuccess(this.$t('删除成功'));
- })
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$confirm(this.$t('是否确认导出所有培训成绩数据项?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function () {
- return exportTrainingrecords(queryParams);
- }).then(response => {
- this.download(response.msg);
- })
- },
- /** 导出人员培训时长按钮操作 */
- exportTrainingTime() {
- const queryParams = this.transTitle;
- this.$confirm(this.$t('是否确认导出人员培训时长?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function () {
- return exportTrainingTime();
- }).then(response => {
- this.download(response.msg);
- })
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.title = this.$t('用户导入');
- this.upload.open = true;
- },
- /** 下载模板操作 */
- importTemplate() {
- this.$refs['downloadFileForm'].submit()
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- if (response.data[0] != null) {
- this.$alert(this.$t('成功导入') + response.msg + this.$t('条数据') + "," + this.$t('第') + response.data + this.$t('行数据出现错误导入失败') + "。", this.$t('导入结果'), {dangerouslyUseHTMLString: true});
- } else {
- this.$alert(this.$t('成功导入') + response.msg + this.$t('条数据'), this.$t('导入结果'), {dangerouslyUseHTMLString: true});
- }
- this.getList();
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- },
- /** 报告附件按钮操作 */
- handleDoc(row, fileType) {
- this.doc.pType = fileType
- this.doc.queryParams.pType = fileType
- this.doc.id = row.id;
- var titleType = '';
- if (fileType === 'trainingrecords-onbord') {
- titleType = row.name + this.$t('空格') + this.$t('的') + this.$t('入职') + this.$t('空格') + this.$t('培训')
- } else if (fileType === 'trainingrecords-tds') {
- titleType = row.name + this.$t('空格') + this.$t('的') + this.$t('TDS培训')
- } else if (fileType === 'trainingrecords-craft') {
- titleType = row.name + this.$t('空格') + this.$t('的') + this.$t('工艺培训')
- } else {
- titleType = this.$t('上岗证') + this.$t('空格') + this.$t('培训')
- }
- this.doc.title = titleType;
- this.doc.open = true;
- this.doc.queryParams.pId = row.id
- this.doc.pId = row.id
- this.getFileList()
- this.$nextTick(() => {
- this.$refs.doc.clearFiles()
- })
- },
- getFileList() {
- allFileList(this.doc.queryParams).then(response => {
- response.forEach(element => {
- element["isEdit"] = false
- });
- response.forEach(element => {
- element["isAdd"] = false
- });
- this.doc.commonfileList = response;
- });
- },
- //附件上传中处理
- handleFileDocProgress(event, file, fileList) {
- this.doc.file = file;
- this.doc.isUploading = true;
- },
- //附件上传成功处理
- handleFileDocSuccess(response, file, fileList) {
- this.doc.isUploading = false;
- this.$alert(response.msg, this.$t('导入结果'), {dangerouslyUseHTMLString: true});
- this.getFileList()
- },
- // 文件下载处理
- handleDownload(row) {
- var name = row.fileName;
- var url = row.fileUrl;
- var suffix = url.substring(url.lastIndexOf("."), url.length);
- const a = document.createElement('a')
- a.setAttribute('download', name)
- a.setAttribute('target', '_blank')
- a.setAttribute('href', process.env.VUE_APP_BASE_API + url)
- a.click()
- },
- //pdf预览
- openPdf() {
- window.open(this.pdf.pdfUrl);//path是文件的全路径地址
- },
- handleSee(row) {
- this.pdf.open = true
- this.pdf.title = row.fileName
- this.pdf.pdfUrl = process.env.VUE_APP_BASE_API + '/pdf/web/viewer.html?file=' + process.env.VUE_APP_BASE_API + row.fileUrl
- },
- /** 打开上岗证复证列表 */
- openWorklicense(row) {
- this.worklicenseOpen = true;
- this.worklicenseTitle = row.name + this.$t('的') + this.$t('上岗证复证') + this.$t('列表');
- this.worklicenseParams.employeeid = row.employeeid
- listTraining(this.worklicenseParams).then(response => {
- this.worklicenseList = response;
- });
- },
- /** 打开公司级培训列表 */
- openCompany(row) {
- this.companyOpen = true;
- this.companyTitle = row.name + this.$t('空格') + this.$t('的') + this.$t('公司级') + this.$t('空格') + this.$t('培训信息');
- this.$nextTick(() => {
- this.getParticipants(row.employeeid)
- })
- },
- /** 打开装置级培训列表 */
- openDevice(row) {
- this.deviceOpen = true;
- this.resetForm("queryRegularForm");
- this.deviceTitle = row.name + this.$t('空格') + this.$t('的') + this.$t('装置级') + this.$t('空格') + this.$t('培训信息');
- this.employeeid = row.employeeid;
- this.queryDeviceParams.year = this.getNowTime();
- this.$nextTick(() => {
- this.getDevice(row.employeeid)
- })
- },
- getParticipants(employeeid) {
- this.queryCompanyParams.staffId = employeeid
- listParticipants(this.queryCompanyParams).then(response => {
- this.participantsList = response.rows;
- });
- },
- getDevice(employeeid) {
- this.queryDeviceParams.staffId = employeeid
- listDevice(this.queryDeviceParams).then(response => {
- this.devicceList = response.rows;
- });
- },
- // 取消
- cancelFile(row, index) {
- // 如果是新增的数据
- if (row.isAdd) {
- this.doc.commonfileList.splice(index, 1)
- } else {
- // 不是新增的数据 还原数据
- for (const i in row.oldRow) {
- row[i] = row.oldRow[i]
- }
- row.isEdit = false
- }
- },
- edit(row) {
- // 备份原始数据
- row['oldRow'] = JSON.parse(JSON.stringify(row));
- this.$nextTick(() => {
- row.isEdit = true;
- })
- },
- save(row) {
- row.isEdit = false;
- var that = this;
- that.loading = true;
- this.form = row;
- if (row.isAdd == true) {
- addCommonfile(this.form).then(response => {
- this.msgSuccess(this.$t('新增成功'));
- this.open = false;
- this.getList();
- });
- } else {
- updateCommonfile(this.form).then(response => {
- this.msgSuccess(this.$t('修改成功'));
- this.open = false;
- this.getList();
- });
- }
- },
- /** 删除按钮操作 */
- handleDeleteDoc(row) {
- const ids = row.id || this.ids;
- this.$confirm(this.$t('是否确认删除?'), this.$t('警告'), {
- confirmButtonText: this.$t('确定'),
- cancelButtonText: this.$t('取消'),
- type: "warning"
- }).then(function () {
- return delCommonfile(ids);
- }).then(() => {
- this.getFileList()
- this.msgSuccess(this.$t('删除成功'));
- })
- },
- /** 公司级培训修改按钮操作 */
- handleCompanyUpdate(row) {
- this.reset();
- const id = row.id || this.ids
- },
- closeDialog() {
- this.companylevelList = []
- this.devicelevelList = []
- this.tableShow = false
- },
- /** 创建数据快照 */
- handleSnapshotData() {
- // 设置默认年份为当前查询的年份
- this.snapshotDialog.form.snapshotYear = this.deviceParams.year || this.getNowTime();
- this.snapshotDialog.visible = true;
- this.$nextTick(() => {
- this.$refs.snapshotForm.resetFields();
- // 重新设置年份
- this.snapshotDialog.form.snapshotYear = this.deviceParams.year || this.getNowTime();
- });
- },
- /** 提交数据快照 */
- submitSnapshotData() {
- this.$refs.snapshotForm.validate(valid => {
- if (valid) {
- // 准备快照数据(忽略培训类型)
- const snapshotData = {
- snapshotName: this.snapshotDialog.form.snapshotName,
- description: this.snapshotDialog.form.description,
- snapshotYear: this.snapshotDialog.form.snapshotYear,
- deviceData: this.devicelevelList,
- staffData: this.deviceStaffmgrs,
- queryParams: this.deviceParams
- };
- // 调用后端API创建快照
- createSnapshot(snapshotData).then(response => {
- if (response.code === 200) {
- this.msgSuccess('数据快照创建成功!');
- this.snapshotDialog.visible = false;
- } else {
- this.msgError(response.msg || '创建快照失败');
- }
- }).catch(error => {
- this.msgError('创建快照失败:' + error.message);
- });
- }
- });
- },
- /** 查看快照 */
- handleViewSnapshot() {
- if (!this.deviceParams.year) {
- this.msgError('请选择年份');
- return;
- }
- // 先显示表格并开启loading
- this.tableShow = true;
- this.deviceTrainingOpen = true;
- this.deviceTrainingLoad = true;
- const params = {
- snapshotYear: this.deviceParams.year
- };
- querySnapshot(params)
- .then(res => {
- if (res.code !== 200 || !res.data) {
- this.msgError(res.msg || '未找到对应快照');
- return;
- }
- try {
- const snapshotData = res.data.snapshotData ? JSON.parse(res.data.snapshotData) : [];
- if (Array.isArray(snapshotData)) {
- this.devicelevelList = snapshotData;
- } else if (snapshotData && snapshotData.deviceData) {
- this.devicelevelList = snapshotData.deviceData || [];
- if (snapshotData.staffData && Array.isArray(snapshotData.staffData)) {
- this.deviceStaffmgrs = snapshotData.staffData;
- }
- } else {
- this.devicelevelList = [];
- }
- this.deviceTrainingTitle = `${this.$t('查看')} ${this.deviceParams.year} ${this.$t('装置级')} ${this.$t('培训人员')} ${this.$t('名单')}(${this.$t('快照')})`;
- this.$nextTick(() => {
- if (this.$refs.deviceTable) this.$refs.deviceTable.doLayout();
- });
- } catch (e) {
- console.error(e);
- this.msgError('快照数据解析失败');
- }
- })
- .finally(() => {
- this.deviceTrainingLoad = false;
- });
- },
- /** 查询快照列表 */
- querySnapshotList() {
- this.loading = true;
- querySnapshot(this.snapshotDialog.form).then(response => {
- this.snapshotList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- /** 加载快照详情 */
- loadSnapshotDetail(row) {
- this.snapshotDialog.form.snapshotName = row.snapshotName;
- this.snapshotDialog.form.description = row.description;
- this.snapshotDialog.form.snapshotYear = row.snapshotYear;
- this.snapshotDialog.visible = true;
- this.$nextTick(() => {
- this.$refs.snapshotForm.resetFields();
- });
- },
- /** 导出Excel */
- exportToExcel() {
- if (!this.devicelevelList || this.devicelevelList.length === 0) {
- this.msgError('没有可导出的数据');
- return;
- }
- try {
- // 构建表格HTML
- let html = '<table border="1" cellspacing="0" cellpadding="5">';
- // 构建表头
- html += '<thead><tr>';
- html += '<th style="background:#f0f0f0;">课程代码</th>';
- html += '<th style="background:#f0f0f0;">培训课程名称</th>';
- if (Array.isArray(this.deviceStaffmgrs)) {
- this.deviceStaffmgrs.forEach(staff => {
- const headerText = `${staff.name || ''}${staff.actualpost ? '(' + staff.actualpost + ')' : ''}`;
- html += `<th style="background:#f0f0f0;">${this.escapeHtml(headerText)}</th>`;
- });
- }
- html += '</tr></thead>';
- // 构建数据行
- html += '<tbody>';
- if (Array.isArray(this.devicelevelList)) {
- this.devicelevelList.forEach(row => {
- html += '<tr>';
- if (Array.isArray(row)) {
- row.forEach(cell => {
- const cellValue = cell != null ? String(cell) : '';
- html += `<td>${this.escapeHtml(cellValue)}</td>`;
- });
- }
- html += '</tr>';
- });
- }
- html += '</tbody></table>';
- // 创建Blob并下载
- const blob = new Blob(['\ufeff' + html], {
- type: 'application/vnd.ms-excel;charset=utf-8;'
- });
- const fileName = `装置级培训人员名单_${this.deviceParams.year || new Date().getFullYear()}.xls`;
- // 创建下载链接
- if (window.navigator.msSaveOrOpenBlob) {
- // IE浏览器
- window.navigator.msSaveOrOpenBlob(blob, fileName);
- } else {
- // 其他浏览器
- const link = document.createElement('a');
- link.href = URL.createObjectURL(blob);
- link.download = fileName;
- document.body.appendChild(link);
- link.click();
- document.body.removeChild(link);
- URL.revokeObjectURL(link.href);
- }
- this.msgSuccess('导出成功');
- } catch (error) {
- console.error('导出Excel失败:', error);
- this.msgError('导出失败,请重试');
- }
- },
- /** HTML转义 */
- escapeHtml(text) {
- const map = {
- '&': '&',
- '<': '<',
- '>': '>',
- '"': '"',
- "'": '''
- };
- return String(text).replace(/[&<>"']/g, m => map[m]);
- }
- }
- };
- </script>
- <style>
- .companyLevelTable {
- color: black;
- }
- ::v-deep.el-table tbody tr:hover > td {
- background-color: transparent !important;
- }
- .el-dialog__body {
- padding-top: 0px
- }
- .el-table--scrollable-x .el-table__body-wrapper {
- z-index: 1;
- }
- .rectangleRed {
- width: 60px !important;
- height: 30px !important;
- margin-bottom: -8px;
- }
- .rectangleGreen {
- width: 60px !important;
- height: 30px !important;
- margin-bottom: -8px;
- }
- </style>
|